2006-10-01 12:05:20 +02:00
< ? php
2006-10-02 05:22:20 +02:00
2008-09-11 08:06:25 +02:00
function batch_edit_cbox ( $elem , $label = false ) {
2008-09-11 08:52:19 +02:00
print " <input type= \" checkbox \" title= \" " . __ ( " Check to enable field " ) . " \"
2010-11-21 09:55:28 +01:00
onchange = \ " dijit.byId('feedEditDlg').toggleField(this, ' $elem ', ' $label ') \" > " ;
2008-09-11 08:06:25 +02:00
}
2006-10-01 12:05:20 +02:00
function module_pref_feeds ( $link ) {
2006-10-02 05:22:20 +02:00
global $update_intervals ;
global $purge_intervals ;
2008-01-25 18:46:01 +01:00
global $update_methods ;
2006-10-02 05:22:20 +02:00
2006-10-01 12:05:20 +02:00
$subop = $_REQUEST [ " subop " ];
$quiet = $_REQUEST [ " quiet " ];
2010-01-11 13:40:35 +01:00
$mode = $_REQUEST [ " mode " ];
2006-10-01 12:05:20 +02:00
2010-11-18 11:46:11 +01:00
if ( $subop == " renamecat " ) {
$title = db_escape_string ( $_REQUEST [ 'title' ]);
$id = db_escape_string ( $_REQUEST [ 'id' ]);
if ( $title ) {
db_query ( $link , " UPDATE ttrss_feed_categories SET
title = '$title' WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"] );
}
return ;
}
if ( $subop == " getfeedtree " ) {
$root = array ();
$root [ 'id' ] = 'root' ;
$root [ 'name' ] = __ ( 'Feeds' );
$root [ 'items' ] = array ();
2010-11-18 16:25:27 +01:00
$root [ 'type' ] = 'category' ;
2010-11-18 11:46:11 +01:00
if ( get_pref ( $link , 'ENABLE_FEED_CATS' )) {
$result = db_query ( $link , " SELECT id, title FROM ttrss_feed_categories
WHERE owner_uid = " . $_SESSION["uid"] . " ORDER BY order_id , title " );
while ( $line = db_fetch_assoc ( $result )) {
$cat = array ();
$cat [ 'id' ] = 'CAT:' . $line [ 'id' ];
$cat [ 'bare_id' ] = $feed_id ;
$cat [ 'name' ] = $line [ 'title' ];
$cat [ 'items' ] = array ();
2010-11-18 16:25:27 +01:00
$cat [ 'type' ] = 'category' ;
2010-11-18 11:46:11 +01:00
2010-11-18 12:20:43 +01:00
$feed_result = db_query ( $link , " SELECT id, title, last_error
FROM ttrss_feeds
2010-11-18 11:46:11 +01:00
WHERE cat_id = '".$line[' id ']."' AND owner_uid = " . $_SESSION["uid"] .
" ORDER BY order_id, title " );
while ( $feed_line = db_fetch_assoc ( $feed_result )) {
$feed = array ();
$feed [ 'id' ] = 'FEED:' . $feed_line [ 'id' ];
$feed [ 'bare_id' ] = $feed_line [ 'id' ];
$feed [ 'name' ] = $feed_line [ 'title' ];
$feed [ 'checkbox' ] = false ;
2010-11-18 12:20:43 +01:00
$feed [ 'error' ] = $feed_line [ 'last_error' ];
$feed [ 'icon' ] = getFeedIcon ( $feed_line [ 'id' ]);
2010-11-18 11:46:11 +01:00
array_push ( $cat [ 'items' ], $feed );
}
array_push ( $root [ 'items' ], $cat );
}
/* Uncategorized is a special case */
$cat = array ();
$cat [ 'id' ] = 'CAT:0' ;
$cat [ 'bare_id' ] = 0 ;
$cat [ 'name' ] = __ ( " Uncategorized " );
$cat [ 'items' ] = array ();
2010-11-19 08:14:11 +01:00
$cat [ 'type' ] = 'category' ;
2010-11-18 12:20:43 +01:00
$feed_result = db_query ( $link , " SELECT id, title,last_error
FROM ttrss_feeds
2010-11-18 11:46:11 +01:00
WHERE cat_id IS NULL AND owner_uid = " . $_SESSION["uid"] .
" ORDER BY order_id, title " );
while ( $feed_line = db_fetch_assoc ( $feed_result )) {
$feed = array ();
$feed [ 'id' ] = 'FEED:' . $feed_line [ 'id' ];
$feed [ 'bare_id' ] = $feed_line [ 'id' ];
$feed [ 'name' ] = $feed_line [ 'title' ];
$feed [ 'checkbox' ] = false ;
2010-11-18 12:20:43 +01:00
$feed [ 'error' ] = $feed_line [ 'last_error' ];
$feed [ 'icon' ] = getFeedIcon ( $feed_line [ 'id' ]);
2010-11-18 11:46:11 +01:00
array_push ( $cat [ 'items' ], $feed );
}
array_push ( $root [ 'items' ], $cat );
} else {
2010-11-18 12:20:43 +01:00
$feed_result = db_query ( $link , " SELECT id, title, last_error
FROM ttrss_feeds
2010-11-18 11:46:11 +01:00
WHERE owner_uid = " . $_SESSION["uid"] .
" ORDER BY order_id, title " );
while ( $feed_line = db_fetch_assoc ( $feed_result )) {
$feed = array ();
$feed [ 'id' ] = 'FEED:' . $feed_line [ 'id' ];
$feed [ 'bare_id' ] = $feed_line [ 'id' ];
$feed [ 'name' ] = $feed_line [ 'title' ];
$feed [ 'checkbox' ] = false ;
2010-11-18 12:20:43 +01:00
$feed [ 'error' ] = $feed_line [ 'last_error' ];
$feed [ 'icon' ] = getFeedIcon ( $feed_line [ 'id' ]);
2010-11-18 11:46:11 +01:00
array_push ( $root [ 'items' ], $feed );
}
}
$fl = array ();
$fl [ 'identifier' ] = 'id' ;
$fl [ 'label' ] = 'name' ;
$fl [ 'items' ] = array ( $root );
print json_encode ( $fl );
return ;
}
if ( $subop == " catsortreset " ) {
db_query ( $link , " UPDATE ttrss_feed_categories
SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"] );
return ;
}
if ( $subop == " feedsortreset " ) {
db_query ( $link , " UPDATE ttrss_feeds
SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"] );
return ;
}
if ( $subop == " savefeedorder " ) {
2010-11-18 16:25:27 +01:00
# if ($_POST['payload']) {
# file_put_contents("/tmp/blahblah.txt", $_POST['payload']);
# $data = json_decode($_POST['payload'], true);
# } else {
# $data = json_decode(file_get_contents("/tmp/blahblah.txt"), true);
# }
2010-11-18 11:46:11 +01:00
2010-11-18 16:25:27 +01:00
$data = json_decode ( $_POST [ 'payload' ], true );
2010-11-18 11:46:11 +01:00
if ( is_array ( $data ) && is_array ( $data [ 'items' ])) {
$cat_order_id = 0 ;
$data_map = array ();
foreach ( $data [ 'items' ] as $item ) {
2010-11-18 16:25:27 +01:00
if ( $item [ 'id' ] != 'root' ) {
if ( is_array ( $item [ 'items' ])) {
if ( isset ( $item [ 'items' ][ '_reference' ])) {
$data_map [ $item [ 'id' ]] = array ( $item [ 'items' ]);
} else {
$data_map [ $item [ 'id' ]] =& $item [ 'items' ];
}
}
}
2010-11-18 11:46:11 +01:00
}
foreach ( $data [ 'items' ][ 0 ][ 'items' ] as $item ) {
$id = $item [ '_reference' ];
$bare_id = substr ( $id , strpos ( $id , ':' ) + 1 );
++ $cat_order_id ;
if ( $bare_id > 0 ) {
db_query ( $link , " UPDATE ttrss_feed_categories
SET order_id = '$cat_order_id' WHERE id = '$bare_id' AND
owner_uid = " . $_SESSION["uid"] );
}
$feed_order_id = 0 ;
if ( is_array ( $data_map [ $id ])) {
foreach ( $data_map [ $id ] as $feed ) {
$id = $feed [ '_reference' ];
2010-11-18 16:25:27 +01:00
$feed_id = substr ( $id , strpos ( $id , ':' ) + 1 );
if ( $bare_id != 0 )
$cat_query = " cat_id = ' $bare_id ' " ;
else
$cat_query = " cat_id = NULL " ;
2010-11-18 11:46:11 +01:00
db_query ( $link , " UPDATE ttrss_feeds
2010-11-18 16:25:27 +01:00
SET order_id = '$feed_order_id' ,
$cat_query
WHERE id = '$feed_id' AND
owner_uid = " . $_SESSION["uid"] );
2010-11-18 11:46:11 +01:00
++ $feed_order_id ;
}
}
}
}
return ;
}
2010-01-14 10:47:28 +01:00
if ( $subop == " removeicon " ) {
$feed_id = db_escape_string ( $_REQUEST [ " feed_id " ]);
$result = db_query ( $link , " SELECT id FROM ttrss_feeds
WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"] );
if ( db_num_rows ( $result ) != 0 ) {
unlink ( ICONS_DIR . " / $feed_id .ico " );
}
return ;
}
2010-01-14 09:28:57 +01:00
if ( $subop == " uploadicon " ) {
2010-01-14 10:47:28 +01:00
$icon_file = $_FILES [ 'icon_file' ][ 'tmp_name' ];
$feed_id = db_escape_string ( $_REQUEST [ " feed_id " ]);
if ( is_file ( $icon_file ) && $feed_id ) {
2010-02-10 16:32:35 +01:00
if ( filesize ( $icon_file ) < 20000 ) {
2010-01-14 10:47:28 +01:00
$result = db_query ( $link , " SELECT id FROM ttrss_feeds
WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"] );
if ( db_num_rows ( $result ) != 0 ) {
unlink ( ICONS_DIR . " / $feed_id .ico " );
move_uploaded_file ( $icon_file , ICONS_DIR . " / $feed_id .ico " );
$rc = 0 ;
} else {
$rc = 2 ;
}
} else {
$rc = 1 ;
}
} else {
$rc = 2 ;
}
2010-01-14 09:28:57 +01:00
print " <script type= \" text/javascript \" > " ;
2010-01-14 10:47:28 +01:00
print " parent.uploadIconHandler( $rc ); " ;
2010-01-14 09:28:57 +01:00
print " </script> " ;
return ;
}
2010-11-14 21:46:49 +01:00
if ( $subop == " editfeed " ) {
2006-10-01 12:05:20 +02:00
$feed_id = db_escape_string ( $_REQUEST [ " id " ]);
$result = db_query ( $link ,
" SELECT * FROM ttrss_feeds WHERE id = ' $feed_id ' AND
owner_uid = " . $_SESSION["uid"] );
2007-05-19 16:09:16 +02:00
$title = htmlspecialchars ( db_fetch_result ( $result ,
0 , " title " ));
2006-10-01 12:05:20 +02:00
2010-11-20 13:29:50 +01:00
print " <input dojoType= \" dijit.form.TextBox \" style= \" display : none \" name= \" id \" value= \" $feed_id\ " > " ;
print " <input dojoType= \" dijit.form.TextBox \" style= \" display : none \" name= \" op \" value= \" pref-feeds \" > " ;
print " <input dojoType= \" dijit.form.TextBox \" style= \" display : none \" name= \" subop \" value= \" editSave \" > " ;
2006-10-01 12:05:20 +02:00
2008-08-06 09:51:28 +02:00
print " <div class= \" dlgSec \" > " . __ ( " Feed " ) . " </div> " ;
print " <div class= \" dlgSecCont \" > " ;
2006-10-01 12:05:20 +02:00
2008-08-06 09:51:28 +02:00
/* Title */
2010-11-20 13:29:50 +01:00
print " <input dojoType= \" dijit.form.ValidationTextBox \" required= \" 1 \"
2010-11-20 19:06:36 +01:00
placeHolder = \ " " . __ ( " Feed Title " ) . " \"
2010-11-20 13:29:50 +01:00
style = \ " font-size : 16px; width: 20em \" name= \" title \" value= \" $title\ " > " ;
2008-08-06 09:51:28 +02:00
/* Feed URL */
2006-10-01 12:05:20 +02:00
$feed_url = db_fetch_result ( $result , 0 , " feed_url " );
2007-05-19 16:09:16 +02:00
$feed_url = htmlspecialchars ( db_fetch_result ( $result ,
0 , " feed_url " ));
2008-08-06 09:51:28 +02:00
print " <br/> " ;
print __ ( 'URL:' ) . " " ;
2010-11-20 13:29:50 +01:00
print " <input dojoType= \" dijit.form.ValidationTextBox \" required= \" 1 \"
2010-11-20 19:06:36 +01:00
placeHolder = \ " " . __ ( " Feed URL " ) . " \"
2010-11-20 13:29:50 +01:00
regExp = '^(http|https)://.*' style = \ " width : 20em \"
2008-08-06 09:51:28 +02:00
name = \ " feed_url \" value= \" $feed_url\ " > " ;
/* Category */
2006-10-01 12:05:20 +02:00
if ( get_pref ( $link , 'ENABLE_FEED_CATS' )) {
$cat_id = db_fetch_result ( $result , 0 , " cat_id " );
2008-08-06 09:51:28 +02:00
print " <br/> " ;
print __ ( 'Place in category:' ) . " " ;
2006-10-01 12:05:20 +02:00
2010-11-20 13:29:50 +01:00
print_feed_cat_select ( $link , " cat_id " , $cat_id ,
'dojoType="dijit.form.Select"' );
2006-10-01 12:05:20 +02:00
}
2008-08-06 09:51:28 +02:00
print " </div> " ;
2006-10-01 12:05:20 +02:00
2008-08-06 10:43:17 +02:00
print " <div class= \" dlgSec \" > " . __ ( " Update " ) . " </div> " ;
2008-08-06 09:51:28 +02:00
print " <div class= \" dlgSecCont \" > " ;
2006-10-01 12:05:20 +02:00
2008-08-06 09:51:28 +02:00
/* Update Interval */
2006-10-01 12:05:20 +02:00
2008-08-06 09:51:28 +02:00
$update_interval = db_fetch_result ( $result , 0 , " update_interval " );
2010-11-20 13:29:50 +01:00
print_select_hash ( " update_interval " , $update_interval , $update_intervals ,
'dojoType="dijit.form.Select"' );
2008-01-25 18:46:01 +01:00
2008-08-06 09:51:28 +02:00
/* Update method */
2010-11-20 13:29:50 +01:00
$update_method = db_fetch_result ( $result , 0 , " update_method " ,
'dojoType="dijit.form.Select"' );
2008-08-06 09:51:28 +02:00
2010-06-30 11:16:20 +02:00
print " " . __ ( 'using' ) . " " ;
2010-11-20 13:29:50 +01:00
print_select_hash ( " update_method " , $update_method , $update_methods ,
'dojoType="dijit.form.Select"' );
2008-01-25 18:46:01 +01:00
2009-01-20 16:01:20 +01:00
$purge_interval = db_fetch_result ( $result , 0 , " purge_interval " );
2009-01-20 13:35:59 +01:00
if ( FORCE_ARTICLE_PURGE == 0 ) {
2008-08-06 09:51:28 +02:00
2009-01-20 13:35:59 +01:00
/* Purge intl */
print " <br/> " ;
print __ ( 'Article purging:' ) . " " ;
2008-08-06 09:51:28 +02:00
2010-11-20 13:29:50 +01:00
print_select_hash ( " purge_interval " , $purge_interval , $purge_intervals ,
'dojoType="dijit.form.Select"' );
2008-08-06 09:51:28 +02:00
2009-01-20 16:01:20 +01:00
} else {
print " <input type='hidden' name='purge_interval' value=' $purge_interval '> " ;
2009-01-20 13:35:59 +01:00
}
2008-08-06 09:51:28 +02:00
print " </div> " ;
print " <div class= \" dlgSec \" > " . __ ( " Authentication " ) . " </div> " ;
print " <div class= \" dlgSecCont \" > " ;
2007-05-19 16:09:16 +02:00
$auth_login = htmlspecialchars ( db_fetch_result ( $result , 0 , " auth_login " ));
2006-10-01 12:05:20 +02:00
2010-11-20 19:06:36 +01:00
# print "<table>";
2009-05-12 11:06:01 +02:00
2010-11-20 19:06:36 +01:00
# print "<tr><td>" . __('Login:') . "</td><td>";
2009-05-12 11:06:01 +02:00
2010-11-20 13:29:50 +01:00
print " <input dojoType= \" dijit.form.TextBox \"
2010-11-20 19:06:36 +01:00
placeHolder = \ " " . __ ( " Login " ) . " \"
name = \ " auth_login \" value= \" $auth_login\ " >< br /> " ;
2008-08-06 09:51:28 +02:00
2010-11-20 19:06:36 +01:00
# print "</tr><tr><td>" . __("Password:") . "</td><td>";
2006-10-01 12:05:20 +02:00
2007-05-19 16:09:16 +02:00
$auth_pass = htmlspecialchars ( db_fetch_result ( $result , 0 , " auth_pass " ));
2006-10-01 12:05:20 +02:00
2010-11-20 13:29:50 +01:00
print " <input dojoType= \" dijit.form.TextBox \" type= \" password \" name= \" auth_pass \"
2010-11-20 19:06:36 +01:00
placeHolder = \ " " . __ ( " Password " ) . " \"
2008-08-06 09:51:28 +02:00
value = \ " $auth_pass\ " > " ;
2006-10-01 12:05:20 +02:00
2010-11-20 19:06:36 +01:00
# print "</td></tr></table>";
2009-05-12 11:06:01 +02:00
2008-08-06 09:51:28 +02:00
print " </div> " ;
print " <div class= \" dlgSec \" > " . __ ( " Options " ) . " </div> " ;
print " <div class= \" dlgSecCont \" > " ;
2006-10-01 12:05:20 +02:00
2010-11-20 13:29:50 +01:00
# print "<div style=\"line-height : 100%\">";
2006-10-01 12:05:20 +02:00
2008-09-30 13:34:49 +02:00
$private = sql_bool_to_bool ( db_fetch_result ( $result , 0 , " private " ));
if ( $private ) {
2010-11-20 13:29:50 +01:00
$checked = " checked= \" 1 \" " ;
2008-09-30 13:34:49 +02:00
} else {
$checked = " " ;
}
2010-11-20 13:29:50 +01:00
print " <input dojoType= \" dijit.form.CheckBox \" type= \" checkbox \" name= \" private \" id= \" private \"
2010-01-11 13:54:14 +01:00
$checked >& nbsp ; < label for = \ " private \" > " . __ ( 'Hide from Popular feeds' ) . " </label> " ;
2006-10-01 12:05:20 +02:00
$rtl_content = sql_bool_to_bool ( db_fetch_result ( $result , 0 , " rtl_content " ));
if ( $rtl_content ) {
2010-11-20 13:29:50 +01:00
$checked = " checked= \" 1 \" " ;
2006-10-01 12:05:20 +02:00
} else {
$checked = " " ;
}
2010-11-20 13:29:50 +01:00
print " <br/><input dojoType= \" dijit.form.CheckBox \" type= \" checkbox \" id= \" rtl_content \" name= \" rtl_content \"
2008-08-06 09:51:28 +02:00
$checked >& nbsp ; < label for = \ " rtl_content \" > " . __ ( 'Right-to-left content' ) . " </label> " ;
2006-10-01 12:05:20 +02:00
$include_in_digest = sql_bool_to_bool ( db_fetch_result ( $result , 0 , " include_in_digest " ));
if ( $include_in_digest ) {
2010-11-20 13:29:50 +01:00
$checked = " checked= \" 1 \" " ;
2006-10-01 12:05:20 +02:00
} else {
$checked = " " ;
}
2010-11-20 13:29:50 +01:00
print " <br/><input dojoType= \" dijit.form.CheckBox \" type= \" checkbox \" id= \" include_in_digest \"
2006-10-01 12:05:20 +02:00
name = \ " include_in_digest \"
2008-08-06 09:51:28 +02:00
$checked >& nbsp ; < label for = \ " include_in_digest \" > " . __ ( 'Include in e-mail digest' ) . " </label> " ;
2006-10-01 12:05:20 +02:00
2009-10-06 12:15:29 +02:00
$always_display_enclosures = sql_bool_to_bool ( db_fetch_result ( $result , 0 , " always_display_enclosures " ));
if ( $always_display_enclosures ) {
$checked = " checked " ;
} else {
$checked = " " ;
}
2010-11-20 13:29:50 +01:00
print " <br/><input dojoType= \" dijit.form.CheckBox \" type= \" checkbox \" id= \" always_display_enclosures \"
2009-10-06 12:15:29 +02:00
name = \ " always_display_enclosures \"
$checked >& nbsp ; < label for = \ " always_display_enclosures \" > " . __ ( 'Always display image attachments' ) . " </label> " ;
2007-08-26 06:00:30 +02:00
$cache_images = sql_bool_to_bool ( db_fetch_result ( $result , 0 , " cache_images " ));
if ( $cache_images ) {
2010-11-20 13:29:50 +01:00
$checked = " checked= \" 1 \" " ;
2007-08-26 06:00:30 +02:00
} else {
$checked = " " ;
}
2010-11-20 13:29:50 +01:00
print " <br/><input dojoType= \" dijit.form.CheckBox \" type= \" checkbox \" id= \" cache_images \"
2010-11-19 16:27:47 +01:00
name = \ " cache_images \"
$checked >& nbsp ; < label for = \ " cache_images \" > " .
__ ( 'Cache images locally (SimplePie only)' ) . " </label> " ;
2007-08-26 06:00:30 +02:00
2006-10-01 12:05:20 +02:00
2010-11-20 13:29:50 +01:00
# print "</div>";
2008-08-06 09:51:28 +02:00
print " </div> " ;
2006-10-01 12:05:20 +02:00
2010-01-14 09:28:57 +01:00
/* Icon */
print " <br/> " ;
2010-01-14 10:47:28 +01:00
print " <div class= \" dlgSec \" > " . __ ( " Icon " ) . " </div> " ;
2010-01-14 09:28:57 +01:00
print " <div class= \" dlgSecCont \" > " ;
print " <iframe name= \" icon_upload_iframe \"
style = \ " width: 400px; height: 100px; display: none; \" ></iframe> " ;
print " <form style='display : block' target= \" icon_upload_iframe \"
enctype = \ " multipart/form-data \" method= \" POST \"
action = \ " backend.php \" >
2010-01-14 10:47:28 +01:00
< input id = \ " icon_file \" size= \" 10 \" name= \" icon_file \" type= \" file \" >
2010-01-14 09:28:57 +01:00
< input type = \ " hidden \" name= \" op \" value= \" pref-feeds \" >
2010-01-14 10:47:28 +01:00
< input type = \ " hidden \" name= \" feed_id \" value= \" $feed_id\ " >
2010-01-14 09:28:57 +01:00
< input type = \ " hidden \" name= \" subop \" value= \" uploadicon \" >
2010-11-20 13:29:50 +01:00
< button dojoType = \ " dijit.form.Button \" onclick= \" return uploadFeedIcon(); \"
2010-01-14 09:28:57 +01:00
type = \ " submit \" > " . __ ( 'Replace' ) . " </button>
2010-11-20 13:29:50 +01:00
< button dojoType = \ " dijit.form.Button \" onclick= \" return removeFeedIcon( $feed_id ); \"
2010-01-14 10:47:28 +01:00
type = \ " submit \" > " . __ ( 'Remove' ) . " </button>
2010-01-14 09:28:57 +01:00
</ form > " ;
2010-01-14 10:47:28 +01:00
print " </div> " ;
2010-01-14 09:28:57 +01:00
2008-11-17 06:49:06 +01:00
$title = htmlspecialchars ( $title , ENT_QUOTES );
2008-08-06 09:51:28 +02:00
print " <div class='dlgButtons'>
2008-08-07 05:17:24 +02:00
< div style = \ " float : left \" >
2010-11-20 13:29:50 +01:00
< button dojoType = \ " dijit.form.Button \" onclick='return unsubscribeFeed( $feed_id , \" $title\ " ) ' > " .
2010-01-12 13:27:04 +01:00
__ ( 'Unsubscribe' ) . " </button>
2008-08-07 05:17:24 +02:00
</ div >
2010-11-20 13:29:50 +01:00
< button dojoType = \ " dijit.form.Button \" onclick= \" return dijit.byId('feedEditDlg').execute() \" > " . __ ( 'Save' ) . " </button>
< button dojoType = \ " dijit.form.Button \" onclick= \" return dijit.byId('feedEditDlg').hide() \" > " . __ ( 'Cancel' ) . " </button>
</ div > " ;
2010-11-14 21:46:49 +01:00
2006-10-01 12:05:20 +02:00
return ;
}
2008-09-11 08:06:25 +02:00
if ( $subop == " editfeeds " ) {
$feed_ids = db_escape_string ( $_REQUEST [ " ids " ]);
2010-11-21 09:55:28 +01:00
print " <input dojoType= \" dijit.form.TextBox \" style= \" display : none \" name= \" ids \" value= \" $feed_ids\ " > " ;
print " <input dojoType= \" dijit.form.TextBox \" style= \" display : none \" name= \" op \" value= \" pref-feeds \" > " ;
print " <input dojoType= \" dijit.form.TextBox \" style= \" display : none \" name= \" subop \" value= \" batchEditSave \" > " ;
2008-09-11 08:06:25 +02:00
print " <div class= \" dlgSec \" > " . __ ( " Feed " ) . " </div> " ;
print " <div class= \" dlgSecCont \" > " ;
/* Title */
2010-11-21 09:55:28 +01:00
print " <input dojoType= \" dijit.form.ValidationTextBox \"
disabled = \ " 1 \" style= \" font-size : 16px; width : 20em; \" required= \" 1 \"
name = \ " title \" value= \" $title\ " > " ;
2008-09-11 08:06:25 +02:00
batch_edit_cbox ( " title " );
/* Feed URL */
print " <br/> " ;
print __ ( 'URL:' ) . " " ;
2010-11-21 09:55:28 +01:00
print " <input dojoType= \" dijit.form.ValidationTextBox \" disabled= \" 1 \"
required = \ " 1 \" regExp='^(http|https)://.*' style= \" width : 20em \"
2008-09-11 08:06:25 +02:00
name = \ " feed_url \" value= \" $feed_url\ " > " ;
batch_edit_cbox ( " feed_url " );
/* Category */
if ( get_pref ( $link , 'ENABLE_FEED_CATS' )) {
print " <br/> " ;
print __ ( 'Place in category:' ) . " " ;
2010-11-21 09:55:28 +01:00
print_feed_cat_select ( $link , " cat_id " , $cat_id ,
'disabled="1" dojoType="dijit.form.Select"' );
2008-09-11 08:06:25 +02:00
batch_edit_cbox ( " cat_id " );
}
print " </div> " ;
print " <div class= \" dlgSec \" > " . __ ( " Update " ) . " </div> " ;
print " <div class= \" dlgSecCont \" > " ;
/* Update Interval */
print_select_hash ( " update_interval " , $update_interval , $update_intervals ,
2010-11-21 09:55:28 +01:00
'disabled="1" dojoType="dijit.form.Select"' );
2008-09-11 08:06:25 +02:00
batch_edit_cbox ( " update_interval " );
/* Update method */
2010-06-30 11:16:20 +02:00
print " " . __ ( 'using' ) . " " ;
print_select_hash ( " update_method " , $update_method , $update_methods ,
2010-11-21 09:55:28 +01:00
'disabled="1" dojoType="dijit.form.Select"' );
2010-06-30 11:16:20 +02:00
batch_edit_cbox ( " update_method " );
2008-09-11 08:06:25 +02:00
/* Purge intl */
2010-11-21 09:55:28 +01:00
if ( FORCE_ARTICLE_PURGE == 0 ) {
2008-09-11 08:06:25 +02:00
2009-01-20 13:35:59 +01:00
print " <br/> " ;
2008-09-11 08:06:25 +02:00
2009-01-20 13:35:59 +01:00
print __ ( 'Article purging:' ) . " " ;
2008-09-11 08:06:25 +02:00
2009-01-20 13:35:59 +01:00
print_select_hash ( " purge_interval " , $purge_interval , $purge_intervals ,
2010-11-21 09:55:28 +01:00
'disabled="1" dojoType="dijit.form.Select"' );
2009-01-20 13:35:59 +01:00
batch_edit_cbox ( " purge_interval " );
}
2008-09-11 08:06:25 +02:00
print " </div> " ;
print " <div class= \" dlgSec \" > " . __ ( " Authentication " ) . " </div> " ;
print " <div class= \" dlgSecCont \" > " ;
2010-11-21 09:55:28 +01:00
print " <input dojoType= \" dijit.form.TextBox \"
placeHolder = \ " " . __ ( " Login " ) . " \" disabled= \" 1 \"
2008-09-11 08:06:25 +02:00
name = \ " auth_login \" value= \" $auth_login\ " > " ;
batch_edit_cbox ( " auth_login " );
2010-11-21 09:55:28 +01:00
print " <br/><input dojoType= \" dijit.form.TextBox \" type= \" password \" name= \" auth_pass \"
placeHolder = \ " " . __ ( " Password " ) . " \" disabled= \" 1 \"
2008-09-11 08:06:25 +02:00
value = \ " $auth_pass\ " > " ;
batch_edit_cbox ( " auth_pass " );
print " </div> " ;
print " <div class= \" dlgSec \" > " . __ ( " Options " ) . " </div> " ;
print " <div class= \" dlgSecCont \" > " ;
2010-11-21 09:55:28 +01:00
print " <input disabled= \" 1 \" type= \" checkbox \" name= \" private \" id= \" private \"
dojoType = \ " dijit.form.CheckBox \" > <label id= \" private_l \" class='insensitive' for= \" private \" > " . __ ( 'Hide from Popular feeds' ) . " </label> " ;
2008-09-11 08:06:25 +02:00
print " " ; batch_edit_cbox ( " private " , " private_l " );
2010-11-21 09:55:28 +01:00
print " <br/><input disabled= \" 1 \" type= \" checkbox \" id= \" rtl_content \" name= \" rtl_content \"
dojoType = \ " dijit.form.CheckBox \" > <label class='insensitive' id= \" rtl_content_l \" for= \" rtl_content \" > " . __ ( 'Right-to-left content' ) . " </label> " ;
2008-09-11 08:06:25 +02:00
print " " ; batch_edit_cbox ( " rtl_content " , " rtl_content_l " );
2010-11-21 09:55:28 +01:00
print " <br/><input disabled= \" 1 \" type= \" checkbox \" id= \" include_in_digest \"
2008-09-11 08:06:25 +02:00
name = \ " include_in_digest \"
2010-11-21 09:55:28 +01:00
dojoType = \ " dijit.form.CheckBox \" > <label id= \" include_in_digest_l \" class='insensitive' for= \" include_in_digest \" > " . __ ( 'Include in e-mail digest' ) . " </label> " ;
2008-09-11 08:06:25 +02:00
print " " ; batch_edit_cbox ( " include_in_digest " , " include_in_digest_l " );
2010-11-21 09:55:28 +01:00
print " <br/><input disabled= \" 1 \" type= \" checkbox \" id= \" always_display_enclosures \"
2009-10-06 12:36:25 +02:00
name = \ " always_display_enclosures \"
2010-11-21 09:55:28 +01:00
dojoType = \ " dijit.form.CheckBox \" > <label id= \" always_display_enclosures_l \" class='insensitive' for= \" always_display_enclosures \" > " . __ ( 'Always display image attachments' ) . " </label> " ;
2009-10-06 12:36:25 +02:00
print " " ; batch_edit_cbox ( " always_display_enclosures " , " always_display_enclosures_l " );
2010-11-21 09:55:28 +01:00
print " <br/><input disabled= \" 1 \" type= \" checkbox \" id= \" cache_images \"
2008-09-11 08:06:25 +02:00
name = \ " cache_images \"
2010-11-21 09:55:28 +01:00
dojoType = \ " dijit.form.CheckBox \" > <label class='insensitive' id= \" cache_images_l \"
2008-09-11 08:06:25 +02:00
for = \ " cache_images \" > " .
__ ( 'Cache images locally' ) . " </label> " ;
2010-11-21 09:55:28 +01:00
print " " ; batch_edit_cbox ( " cache_images " , " cache_images_l " );
2008-09-11 08:06:25 +02:00
print " </div> " ;
print " <div class='dlgButtons'>
< input type = \ " submit \" class= \" button \"
2010-11-21 09:55:28 +01:00
onclick = \ " return dijit.byId('feedEditDlg').execute() \"
value = \ " " . __ ( 'Save' ) . " \" >
2008-09-11 08:06:25 +02:00
< input type = 'submit' class = 'button'
2010-11-21 09:55:28 +01:00
onclick = \ " return dijit.byId('feedEditDlg').hide() \"
value = \ " " . __ ( 'Cancel' ) . " \" >
2008-09-11 08:06:25 +02:00
</ div > " ;
2010-11-21 09:55:28 +01:00
2008-09-11 08:06:25 +02:00
return ;
}
2008-09-11 08:36:41 +02:00
if ( $subop == " editSave " || $subop == " batchEditSave " ) {
2006-10-01 12:05:20 +02:00
$feed_title = db_escape_string ( trim ( $_POST [ " title " ]));
$feed_link = db_escape_string ( trim ( $_POST [ " feed_url " ]));
$upd_intl = db_escape_string ( $_POST [ " update_interval " ]);
$purge_intl = db_escape_string ( $_POST [ " purge_interval " ]);
2008-09-11 08:36:41 +02:00
$feed_id = db_escape_string ( $_POST [ " id " ]); /* editSave */
$feed_ids = db_escape_string ( $_POST [ " ids " ]); /* batchEditSave */
2006-10-01 12:05:20 +02:00
$cat_id = db_escape_string ( $_POST [ " cat_id " ]);
$auth_login = db_escape_string ( trim ( $_POST [ " auth_login " ]));
$auth_pass = db_escape_string ( trim ( $_POST [ " auth_pass " ]));
$private = checkbox_to_sql_bool ( db_escape_string ( $_POST [ " private " ]));
$rtl_content = checkbox_to_sql_bool ( db_escape_string ( $_POST [ " rtl_content " ]));
$include_in_digest = checkbox_to_sql_bool (
db_escape_string ( $_POST [ " include_in_digest " ]));
2007-08-26 06:00:30 +02:00
$cache_images = checkbox_to_sql_bool (
db_escape_string ( $_POST [ " cache_images " ]));
2008-01-25 18:46:01 +01:00
$update_method = ( int ) db_escape_string ( $_POST [ " update_method " ]);
2006-10-01 12:05:20 +02:00
2009-10-06 12:15:29 +02:00
$always_display_enclosures = checkbox_to_sql_bool (
db_escape_string ( $_POST [ " always_display_enclosures " ]));
2006-10-01 12:05:20 +02:00
if ( get_pref ( $link , 'ENABLE_FEED_CATS' )) {
if ( $cat_id && $cat_id != 0 ) {
$category_qpart = " cat_id = ' $cat_id ', " ;
$category_qpart_nocomma = " cat_id = ' $cat_id ' " ;
} else {
$category_qpart = 'cat_id = NULL,' ;
$category_qpart_nocomma = 'cat_id = NULL' ;
}
} else {
$category_qpart = " " ;
$category_qpart_nocomma = " " ;
}
2010-06-30 10:57:11 +02:00
if ( SIMPLEPIE_CACHE_IMAGES ) {
2007-08-26 06:00:30 +02:00
$cache_images_qpart = " cache_images = $cache_images , " ;
} else {
$cache_images_qpart = " " ;
}
2008-09-11 08:36:41 +02:00
if ( $subop == " editSave " ) {
$result = db_query ( $link , " UPDATE ttrss_feeds SET
2010-11-10 10:05:55 +01:00
$category_qpart
2008-09-11 08:36:41 +02:00
title = '$feed_title' , feed_url = '$feed_link' ,
update_interval = '$upd_intl' ,
purge_interval = '$purge_intl' ,
auth_login = '$auth_login' ,
auth_pass = '$auth_pass' ,
private = $private ,
rtl_content = $rtl_content ,
$cache_images_qpart
include_in_digest = $include_in_digest ,
2009-10-06 12:15:29 +02:00
always_display_enclosures = $always_display_enclosures ,
2008-09-11 08:36:41 +02:00
update_method = '$update_method'
2008-09-17 07:11:53 +02:00
WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"] );
2008-09-11 08:36:41 +02:00
} else if ( $subop == " batchEditSave " ) {
$feed_data = array ();
2006-10-01 12:05:20 +02:00
2008-09-11 08:36:41 +02:00
foreach ( array_keys ( $_POST ) as $k ) {
if ( $k != " op " && $k != " subop " && $k != " ids " ) {
$feed_data [ $k ] = $_POST [ $k ];
}
}
db_query ( $link , " BEGIN " );
foreach ( array_keys ( $feed_data ) as $k ) {
$qpart = " " ;
switch ( $k ) {
case " title " :
$qpart = " title = ' $feed_title ' " ;
break ;
case " feed_url " :
$qpart = " feed_url = ' $feed_link ' " ;
break ;
case " update_interval " :
$qpart = " update_interval = ' $upd_intl ' " ;
break ;
case " purge_interval " :
$qpart = " purge_interval = ' $purge_intl ' " ;
break ;
case " auth_login " :
$qpart = " auth_login = ' $auth_login ' " ;
break ;
case " auth_pass " :
$qpart = " auth_pass = ' $auth_pass ' " ;
break ;
case " private " :
$qpart = " private = ' $private ' " ;
break ;
case " include_in_digest " :
$qpart = " include_in_digest = ' $include_in_digest ' " ;
break ;
2009-10-06 12:36:25 +02:00
case " always_display_enclosures " :
$qpart = " always_display_enclosures = ' $always_display_enclosures ' " ;
break ;
2008-09-11 08:45:39 +02:00
case " cache_images " :
$qpart = " cache_images = ' $cache_images ' " ;
break ;
case " rtl_content " :
$qpart = " rtl_content = ' $rtl_content ' " ;
break ;
2008-09-11 08:36:41 +02:00
case " update_method " :
$qpart = " update_method = ' $update_method ' " ;
break ;
case " cat_id " :
$qpart = $category_qpart_nocomma ;
break ;
}
if ( $qpart ) {
2008-09-11 09:01:34 +02:00
db_query ( $link ,
2008-09-11 08:36:41 +02:00
" UPDATE ttrss_feeds SET $qpart WHERE id IN ( $feed_ids )
2008-09-11 08:52:19 +02:00
AND owner_uid = " . $_SESSION["uid"] );
print " <br/> " ;
2008-09-11 08:36:41 +02:00
}
}
db_query ( $link , " COMMIT " );
2006-10-01 12:05:20 +02:00
}
2010-11-21 09:55:28 +01:00
return ;
2006-10-01 12:05:20 +02:00
}
if ( $subop == " remove " ) {
2009-12-29 16:49:27 +01:00
$ids = split ( " , " , db_escape_string ( $_REQUEST [ " ids " ]));
2006-10-01 12:05:20 +02:00
2009-01-18 10:32:45 +01:00
foreach ( $ids as $id ) {
2009-12-28 10:04:21 +01:00
remove_feed ( $link , $id , $_SESSION [ " uid " ]);
2006-10-01 12:05:20 +02:00
}
2010-01-13 21:59:02 +01:00
return ;
2006-10-01 12:05:20 +02:00
}
2007-08-26 06:13:50 +02:00
if ( $subop == " clear " ) {
2009-12-29 16:49:27 +01:00
$id = db_escape_string ( $_REQUEST [ " id " ]);
2007-08-26 06:13:50 +02:00
clear_feed_articles ( $link , $id );
}
2008-04-30 12:12:41 +02:00
if ( $subop == " rescore " ) {
2009-12-29 16:49:27 +01:00
$ids = split ( " , " , db_escape_string ( $_REQUEST [ " ids " ]));
2008-04-30 12:12:41 +02:00
foreach ( $ids as $id ) {
$filters = load_filters ( $link , $id , $_SESSION [ " uid " ], 6 );
2010-11-09 19:48:42 +01:00
$result = db_query ( $link , " SELECT
title , content , link , ref_id , author , " .
SUBSTRING_FOR_DATE . " (updated, 1, 19) AS updated
FROM
2008-04-30 12:12:41 +02:00
ttrss_user_entries , ttrss_entries
WHERE ref_id = id AND feed_id = '$id' AND
owner_uid = " . $_SESSION['uid'] . "
2008-04-30 12:54:26 +02:00
" );
2008-04-30 12:12:41 +02:00
$scores = array ();
while ( $line = db_fetch_assoc ( $result )) {
2010-11-09 19:48:42 +01:00
$tags = get_article_tags ( $link , $line [ " ref_id " ]);
2008-04-30 12:12:41 +02:00
$article_filters = get_article_filters ( $filters , $line [ 'title' ],
2010-11-09 19:48:42 +01:00
$line [ 'content' ], $line [ 'link' ], strtotime ( $line [ 'updated' ]),
$line [ 'author' ], $tags );
2008-04-30 12:12:41 +02:00
$new_score = calculate_article_score ( $article_filters );
if ( ! $scores [ $new_score ]) $scores [ $new_score ] = array ();
array_push ( $scores [ $new_score ], $line [ 'ref_id' ]);
}
foreach ( array_keys ( $scores ) as $s ) {
if ( $s > 1000 ) {
db_query ( $link , " UPDATE ttrss_user_entries SET score = ' $s ',
marked = true WHERE
2008-05-04 06:46:14 +02:00
ref_id IN ( " . join(',', $scores[$s] ) . " ) " );
2008-05-17 04:34:49 +02:00
} else if ( $s < - 500 ) {
db_query ( $link , " UPDATE ttrss_user_entries SET score = ' $s ',
unread = false WHERE
ref_id IN ( " . join(',', $scores[$s] ) . " ) " );
2008-05-04 06:46:14 +02:00
} else {
db_query ( $link , " UPDATE ttrss_user_entries SET score = ' $s ' WHERE
ref_id IN ( " . join(',', $scores[$s] ) . " ) " );
}
}
}
print __ ( " All done. " );
}
if ( $subop == " rescoreAll " ) {
$result = db_query ( $link ,
" SELECT id FROM ttrss_feeds WHERE owner_uid = " . $_SESSION [ 'uid' ]);
while ( $feed_line = db_fetch_assoc ( $result )) {
$id = $feed_line [ " id " ];
$filters = load_filters ( $link , $id , $_SESSION [ " uid " ], 6 );
2010-11-09 19:48:42 +01:00
$tmp_result = db_query ( $link , " SELECT
title , content , link , ref_id , author , " .
SUBSTRING_FOR_DATE . " (updated, 1, 19) AS updated
FROM
2008-05-04 06:46:14 +02:00
ttrss_user_entries , ttrss_entries
WHERE ref_id = id AND feed_id = '$id' AND
owner_uid = " . $_SESSION['uid'] . "
" );
$scores = array ();
while ( $line = db_fetch_assoc ( $tmp_result )) {
2010-11-09 19:48:42 +01:00
$tags = get_article_tags ( $link , $line [ " ref_id " ]);
2008-05-04 06:46:14 +02:00
$article_filters = get_article_filters ( $filters , $line [ 'title' ],
2010-11-09 19:48:42 +01:00
$line [ 'content' ], $line [ 'link' ], strtotime ( $line [ 'updated' ]),
$line [ 'author' ], $tags );
2008-05-04 06:46:14 +02:00
$new_score = calculate_article_score ( $article_filters );
if ( ! $scores [ $new_score ]) $scores [ $new_score ] = array ();
array_push ( $scores [ $new_score ], $line [ 'ref_id' ]);
}
foreach ( array_keys ( $scores ) as $s ) {
if ( $s > 1000 ) {
db_query ( $link , " UPDATE ttrss_user_entries SET score = ' $s ',
marked = true WHERE
2008-04-30 12:12:41 +02:00
ref_id IN ( " . join(',', $scores[$s] ) . " ) " );
} else {
db_query ( $link , " UPDATE ttrss_user_entries SET score = ' $s ' WHERE
ref_id IN ( " . join(',', $scores[$s] ) . " ) " );
}
}
}
print __ ( " All done. " );
}
2006-10-01 12:05:20 +02:00
if ( $subop == " add " ) {
2010-01-13 10:48:49 +01:00
$feed_url = db_escape_string ( trim ( $_REQUEST [ " feed_url " ]));
$cat_id = db_escape_string ( $_REQUEST [ " cat_id " ]);
$p_from = db_escape_string ( $_REQUEST [ " from " ]);
2006-10-01 12:05:20 +02:00
2010-01-13 10:48:49 +01:00
/* only read authentication information from POST */
2006-10-31 09:37:40 +01:00
2010-01-13 10:48:49 +01:00
$auth_login = db_escape_string ( trim ( $_POST [ " auth_login " ]));
$auth_pass = db_escape_string ( trim ( $_POST [ " auth_pass " ]));
2006-10-31 09:37:40 +01:00
2010-01-13 10:48:49 +01:00
if ( $p_from != 'tt-rss' ) {
print " <html>
< head >
< title > Tiny Tiny RSS </ title >
< link rel = \ " stylesheet \" type= \" text/css \" href= \" utility.css \" >
</ head >
< body >
< img class = \ " floatingLogo \" src= \" images/ttrss_logo.png \"
alt = \ " Tiny Tiny RSS \" />
< h1 > Subscribe to feed ...</ h1 > " ;
}
2008-02-24 13:18:08 +01:00
2010-01-13 10:48:49 +01:00
$rc = subscribe_to_feed ( $link , $feed_url , $cat_id , $auth_login , $auth_pass );
switch ( $rc ) {
case 1 :
print_notice ( T_sprintf ( " Subscribed to <b>%s</b>. " , $feed_url ));
break ;
case 2 :
print_error ( T_sprintf ( " Could not subscribe to <b>%s</b>. " , $feed_url ));
break ;
case 0 :
print_warning ( T_sprintf ( " Already subscribed to <b>%s</b>. " , $feed_url ));
break ;
}
2006-12-18 06:56:55 +01:00
2010-01-13 10:48:49 +01:00
if ( $p_from != 'tt-rss' ) {
$tt_uri = ( $_SERVER [ 'HTTPS' ] != " on " ? 'http://' : 'https://' ) . $_SERVER [ 'HTTP_HOST' ] . preg_replace ( '/backend\.php.*$/' , 'tt-rss.php' , $_SERVER [ " REQUEST_URI " ]);
2006-12-18 06:56:55 +01:00
2010-01-13 10:48:49 +01:00
$tp_uri = ( $_SERVER [ 'HTTPS' ] != " on " ? 'http://' : 'https://' ) . $_SERVER [ 'HTTP_HOST' ] . preg_replace ( '/backend\.php.*$/' , 'prefs.php' , $_SERVER [ " REQUEST_URI " ]);
2009-01-22 17:30:37 +01:00
2010-01-13 10:48:49 +01:00
$result = db_query ( $link , " SELECT id FROM ttrss_feeds WHERE
feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"] );
2006-12-18 06:56:55 +01:00
2010-01-13 10:48:49 +01:00
$feed_id = db_fetch_result ( $result , 0 , " id " );
2006-10-31 09:37:40 +01:00
2010-01-13 10:48:49 +01:00
print " <p> " ;
if ( $feed_id ) {
print " <form method= \" GET \" style='display: inline'
action = \ " $tp_uri\ " >
< input type = \ " hidden \" name= \" tab \" value= \" feedConfig \" >
< input type = \ " hidden \" name= \" subop \" value= \" editFeed \" >
< input type = \ " hidden \" name= \" subopparam \" value= \" $feed_id\ " >
< input type = \ " submit \" value= \" " . __ ( " Edit subscription options " ) . " \" >
</ form > " ;
2006-10-31 09:37:40 +01:00
}
2007-05-14 07:41:04 +02:00
2010-01-13 10:48:49 +01:00
print " <form style='display: inline' method= \" GET \" action= \" $tt_uri\ " >
< input type = \ " submit \" value= \" " . __ ( " Return to Tiny Tiny RSS " ) . " \" >
</ form ></ p > " ;
print " </body></html> " ;
return ;
2006-10-01 12:05:20 +02:00
}
}
if ( $subop == " categorize " ) {
2010-07-01 10:26:27 +02:00
$ids = split ( " , " , db_escape_string ( $_REQUEST [ " ids " ]));
2006-10-01 12:05:20 +02:00
2010-07-01 10:26:27 +02:00
$cat_id = db_escape_string ( $_REQUEST [ " cat_id " ]);
2006-10-01 12:05:20 +02:00
2010-07-01 10:26:27 +02:00
if ( $cat_id == 0 ) {
$cat_id_qpart = 'NULL' ;
} else {
$cat_id_qpart = " ' $cat_id ' " ;
}
2006-10-01 12:05:20 +02:00
2010-07-01 10:26:27 +02:00
db_query ( $link , " BEGIN " );
2006-10-01 12:05:20 +02:00
2010-07-01 10:26:27 +02:00
foreach ( $ids as $id ) {
db_query ( $link , " UPDATE ttrss_feeds SET cat_id = $cat_id_qpart
2010-11-10 10:05:55 +01:00
WHERE id = '$id'
2010-07-01 10:26:27 +02:00
AND owner_uid = " . $_SESSION["uid"] );
2006-10-01 12:05:20 +02:00
}
2010-07-01 10:26:27 +02:00
db_query ( $link , " COMMIT " );
2006-10-01 12:05:20 +02:00
}
2006-10-04 07:40:00 +02:00
if ( $subop == " editCats " ) {
$action = $_REQUEST [ " action " ];
if ( $action == " save " ) {
2007-08-20 09:29:39 +02:00
$cat_title = db_escape_string ( trim ( $_REQUEST [ " value " ]));
2009-12-29 16:49:27 +01:00
$cat_id = db_escape_string ( $_REQUEST [ " cid " ]);
2007-08-20 09:29:39 +02:00
2009-01-20 17:48:38 +01:00
db_query ( $link , " BEGIN " );
$result = db_query ( $link , " SELECT title FROM ttrss_feed_categories
WHERE id = '$cat_id' AND owner_uid = " . $_SESSION["uid"] );
if ( db_num_rows ( $result ) == 1 ) {
$old_title = db_fetch_result ( $result , 0 , " title " );
if ( $cat_title != " " ) {
$result = db_query ( $link , " UPDATE ttrss_feed_categories SET
title = '$cat_title' WHERE id = '$cat_id' AND
owner_uid = " . $_SESSION["uid"] );
print $cat_title ;
} else {
print $old_title ;
}
} else {
print $_REQUEST [ " value " ];
}
db_query ( $link , " COMMIT " );
2007-08-20 09:29:39 +02:00
return ;
2006-10-04 07:40:00 +02:00
}
if ( $action == " add " ) {
2010-07-01 10:26:27 +02:00
$feed_cat = db_escape_string ( trim ( $_REQUEST [ " cat " ]));
2010-11-07 21:30:05 +01:00
if ( ! add_feed_category ( $link , $feed_cat ))
print_warning ( T_sprintf ( " Category <b> $ %s</b> already exists in the database. " , $feed_cat ));
2010-07-01 10:26:27 +02:00
2006-10-04 07:40:00 +02:00
}
if ( $action == " remove " ) {
2009-12-29 16:49:27 +01:00
$ids = split ( " , " , db_escape_string ( $_REQUEST [ " ids " ]));
2006-10-04 07:40:00 +02:00
2009-12-28 10:04:21 +01:00
foreach ( $ids as $id ) {
remove_feed_category ( $link , $id , $_SESSION [ " uid " ]);
2006-10-04 07:40:00 +02:00
}
}
2010-11-18 20:26:04 +01:00
print " <div dojoType= \" dijit.Toolbar \" >
2010-11-20 19:29:19 +01:00
< input dojoType = \ " dijit.form.ValidationTextBox \" required= \" 1 \" name= \" newcat \" >
< button dojoType = \ " dijit.form.Button \" onclick= \" dijit.byId('feedCatEditDlg').addCategory() \" > " .
__ ( 'Create category' ) . " </button></div> " ;
2006-10-04 07:40:00 +02:00
$result = db_query ( $link , " SELECT title,id FROM ttrss_feed_categories
WHERE owner_uid = " . $_SESSION["uid"] . "
ORDER BY title " );
2010-11-18 20:26:04 +01:00
# print "<p>";
2006-10-04 07:40:00 +02:00
if ( db_num_rows ( $result ) != 0 ) {
print " <div class= \" prefFeedCatHolder \" > " ;
2010-11-20 19:29:19 +01:00
# print "<form id=\"feed_cat_edit_form\" onsubmit=\"return false\">";
2006-10-04 07:40:00 +02:00
print " <table width= \" 100% \" class= \" prefFeedCatList \"
cellspacing = \ " 0 \" id= \" prefFeedCatList \" > " ;
$lnum = 0 ;
while ( $line = db_fetch_assoc ( $result )) {
$class = ( $lnum % 2 ) ? " even " : " odd " ;
$cat_id = $line [ " id " ];
2007-08-20 09:29:39 +02:00
$this_row_id = " id= \" FCATR- $cat_id\ " " ;
2006-10-04 07:40:00 +02:00
2010-11-18 20:26:04 +01:00
print " <tr class= \" \" $this_row_id > " ;
2006-10-04 07:40:00 +02:00
2007-05-19 16:09:16 +02:00
$edit_title = htmlspecialchars ( $line [ " title " ]);
2006-10-04 07:40:00 +02:00
2007-08-20 09:29:39 +02:00
print " <td width='5%' align='center'><input
2010-11-18 20:26:04 +01:00
onclick = 'toggleSelectRow2(this);' dojoType = \ " dijit.form.CheckBox \"
2010-11-21 10:50:14 +01:00
type = \ " checkbox \" ></td> " ;
2007-08-20 09:29:39 +02:00
2010-11-18 14:44:51 +01:00
print " <td> " ;
2006-10-04 07:40:00 +02:00
2010-11-18 14:44:51 +01:00
# print "<span id=\"FCATT-$cat_id\">" .
# $edit_title . "</span>";
print " <span dojoType= \" dijit.InlineEditBox \"
width = \ " 300px \" autoSave= \" false \"
cat - id = \ " $cat_id\ " > " . $edit_title .
" <script type= \" dojo/method \" event= \" onChange \" args= \" item \" >
var elem = this ;
dojo . xhrPost ({
url : 'backend.php' ,
content : { op : 'pref-feeds' , subop : 'editCats' ,
action : 'save' ,
value : this . value ,
cid : this . srcNodeRef . getAttribute ( 'cat-id' )},
load : function ( response ) {
elem . attr ( 'value' , response );
2010-11-20 19:29:19 +01:00
updateFeedList ();
2010-11-18 14:44:51 +01:00
}
});
</ script >
</ span > " ;
print " </td></tr> " ;
2006-10-04 07:40:00 +02:00
++ $lnum ;
}
print " </table> " ;
2010-11-20 19:29:19 +01:00
# print "</form>";
2006-10-04 07:40:00 +02:00
print " </div> " ;
2006-10-04 08:14:16 +02:00
} else {
2007-03-05 10:37:40 +01:00
print " <p> " . __ ( 'No feed categories defined.' ) . " </p> " ;
2006-10-04 08:14:16 +02:00
}
2006-10-04 07:40:00 +02:00
2010-01-12 14:04:59 +01:00
print " <div class='dlgButtons'>
< div style = 'float : left' >
2010-11-20 19:29:19 +01:00
< button dojoType = \ " dijit.form.Button \" onclick= \" dijit.byId('feedCatEditDlg').removeSelected() \" > " .
__ ( 'Remove selected categories' ) . " </button>
2010-01-12 14:04:59 +01:00
</ div > " ;
2006-10-04 07:40:00 +02:00
2010-11-20 19:29:19 +01:00
print " <button dojoType= \" dijit.form.Button \" onclick= \" dijit.byId('feedCatEditDlg').hide() \" > " .
2010-01-12 14:04:59 +01:00
__ ( 'Close this window' ) . " </button></div> " ;
2006-10-04 07:40:00 +02:00
return ;
}
2006-10-01 12:05:20 +02:00
if ( $quiet ) return ;
2010-11-17 12:49:06 +01:00
print " <div dojoType= \" dijit.layout.AccordionContainer \" region= \" center \" > " ;
2010-11-20 22:52:20 +01:00
print " <div id= \" pref-feeds-feeds \" dojoType= \" dijit.layout.AccordionPane \" title= \" " . __ ( 'Feeds' ) . " \" > " ;
2010-11-17 12:49:06 +01:00
2006-12-01 07:26:05 +01:00
$result = db_query ( $link , " SELECT COUNT(id) AS num_errors
2006-10-01 12:05:20 +02:00
FROM ttrss_feeds WHERE last_error != '' AND owner_uid = " . $_SESSION["uid"] );
2006-12-01 07:26:05 +01:00
$num_errors = db_fetch_result ( $result , 0 , " num_errors " );
2006-10-01 12:05:20 +02:00
2006-12-01 07:26:05 +01:00
if ( $num_errors > 0 ) {
2006-10-01 12:05:20 +02:00
2010-11-18 08:15:14 +01:00
$error_button = " <button dojoType= \" dijit.form.Button \"
onclick = \ " showFeedsWithErrors \" id= \" errorButton \" > " .
__ ( " Feeds with errors " ) . " </button> " ;
// print format_notice("<a href=\"javascript:showFeedsWithErrors()\">".
// __('Some feeds have update errors (click for details)')."</a>");
2006-10-01 12:05:20 +02:00
}
2009-12-29 16:49:27 +01:00
$feed_search = db_escape_string ( $_REQUEST [ " search " ]);
2006-10-01 12:05:20 +02:00
2009-12-29 16:49:27 +01:00
if ( array_key_exists ( " search " , $_REQUEST )) {
2006-10-01 12:05:20 +02:00
$_SESSION [ " prefs_feed_search " ] = $feed_search ;
} else {
$feed_search = $_SESSION [ " prefs_feed_search " ];
}
2010-11-17 12:49:06 +01:00
print " <div dojoType= \" dijit.Toolbar \" > " ;
2010-11-17 19:13:41 +01:00
print " <div dojoType= \" dijit.form.DropDownButton \" > " .
2010-11-17 19:39:51 +01:00
" <span> " . __ ( 'Select' ) . " </span> " ;
2010-11-17 19:13:41 +01:00
print " <div dojoType= \" dijit.Menu \" style= \" display: none; \" > " ;
print " <div onclick= \" dijit.byId('feedTree').model.setAllChecked(true) \"
dojoType = \ " dijit.MenuItem \" > " . __ ( 'All' ) . " </div> " ;
print " <div onclick= \" dijit.byId('feedTree').model.setAllChecked(false) \"
dojoType = \ " dijit.MenuItem \" > " . __ ( 'None' ) . " </div> " ;
2010-11-17 19:39:51 +01:00
print " </div></div> " ;
2010-01-11 16:43:53 +01:00
2010-11-18 11:46:11 +01:00
print " <div dojoType= \" dijit.form.DropDownButton \" > " .
" <span> " . __ ( 'Feeds' ) . " </span> " ;
print " <div dojoType= \" dijit.Menu \" style= \" display: none; \" > " ;
print " <div onclick= \" quickAddFeed() \"
dojoType = \ " dijit.MenuItem \" > " . __ ( 'Subscribe to feed' ) . " </div> " ;
print " <div onclick= \" editSelectedFeed() \"
2010-11-18 12:20:43 +01:00
dojoType = \ " dijit.MenuItem \" > " . __ ( 'Edit selected feeds' ) . " </div> " ;
2010-11-18 11:46:11 +01:00
print " <div onclick= \" resetFeedOrder() \"
dojoType = \ " dijit.MenuItem \" > " . __ ( 'Reset sort order' ) . " </div> " ;
print " </div></div> " ;
2010-01-11 16:43:53 +01:00
if ( get_pref ( $link , 'ENABLE_FEED_CATS' )) {
2010-11-18 11:46:11 +01:00
print " <div dojoType= \" dijit.form.DropDownButton \" > " .
" <span> " . __ ( 'Categories' ) . " </span> " ;
print " <div dojoType= \" dijit.Menu \" style= \" display: none; \" > " ;
print " <div onclick= \" editFeedCats() \"
dojoType = \ " dijit.MenuItem \" > " . __ ( 'Edit categories' ) . " </div> " ;
print " <div onclick= \" resetCatOrder() \"
dojoType = \ " dijit.MenuItem \" > " . __ ( 'Reset sort order' ) . " </div> " ;
print " </div></div> " ;
2010-01-11 16:43:53 +01:00
}
2010-11-18 08:15:14 +01:00
print $error_button ;
2010-11-17 19:13:41 +01:00
print " <button dojoType= \" dijit.form.Button \" onclick= \" removeSelectedFeeds() \" > "
. __ ( 'Unsubscribe' ) . " </button dojoType= \" dijit.form.Button \" > " ;
2010-01-11 16:43:53 +01:00
2010-01-28 16:52:46 +01:00
if ( defined ( '_ENABLE_FEED_DEBUGGING' )) {
2006-10-01 12:05:20 +02:00
2010-01-28 16:52:46 +01:00
print " <select id= \" feedActionChooser \" onchange= \" feedActionChange() \" >
< option value = \ " facDefault \" selected> " . __ ( 'More actions...' ) . " </option> " ;
if ( FORCE_ARTICLE_PURGE == 0 ) {
print
" <option value= \" facPurge \" > " . __ ( 'Manual purge' ) . " </option> " ;
}
print "
< option value = \ " facClear \" > " . __ ( 'Clear feed data' ) . " </option>
< option value = \ " facRescore \" > " . __ ( 'Rescore articles' ) . " </option> " ;
print " </select> " ;
2010-01-28 16:49:17 +01:00
2010-01-28 16:52:46 +01:00
}
2010-01-28 16:49:17 +01:00
2010-11-17 12:49:06 +01:00
print " </div> " ; # toolbar
2010-11-17 19:13:41 +01:00
print " <div id= \" feedlistLoading \" >
< img src = 'images/indicator_tiny.gif' > " .
__ ( " Loading, please wait... " ) . " </div> " ;
2010-11-18 11:46:11 +01:00
print " <div dojoType= \" fox.PrefFeedStore \" jsId= \" feedStore \"
url = \ " backend.php?op=pref-feeds&subop=getfeedtree \" >
2010-11-17 19:13:41 +01:00
</ div >
< div dojoType = \ " lib.CheckBoxStoreModel \" jsId= \" feedModel \" store= \" feedStore \"
query = \ " { id:'root'} \" rootId= \" root \" rootLabel= \" Feeds \"
childrenAttrs = \ " items \" checkboxStrict= \" false \" checkboxAll= \" false \" >
</ div >
2010-11-17 21:32:32 +01:00
< div dojoType = \ " fox.PrefFeedTree \" id= \" feedTree \"
dndController = \ " dijit.tree.dndSource \"
2010-11-18 11:46:11 +01:00
betweenThreshold = \ " 5 \"
2010-11-17 19:13:41 +01:00
model = \ " feedModel \" openOnClick= \" false \" >
< script type = \ " dojo/method \" event= \" onClick \" args= \" item \" >
var id = String ( item . id );
var bare_id = id . substr ( id . indexOf ( ':' ) + 1 );
2010-11-18 11:46:11 +01:00
if ( id . match ( 'FEED:' )) {
2010-11-17 19:13:41 +01:00
editFeed ( bare_id , event );
2010-11-18 11:46:11 +01:00
} else if ( id . match ( 'CAT:' )) {
editCat ( bare_id , item , event );
}
2010-11-17 19:13:41 +01:00
</ script >
< script type = \ " dojo/method \" event= \" onLoad \" args= \" item \" >
Element . hide ( \ " feedlistLoading \" );
</ script >
</ div > " ;
2010-11-18 13:49:26 +01:00
print " <div dojoType= \" dijit.Tooltip \" connectId= \" feedTree \" position= \" below \" >
< b > Hint :</ b > you can drag feeds and categories around .
</ div > " ;
2010-11-17 12:49:06 +01:00
print " </div> " ; # feeds pane
2006-10-04 08:16:13 +02:00
2010-11-17 12:49:06 +01:00
print " <div dojoType= \" dijit.layout.AccordionPane \" title= \" " . __ ( 'OPML' ) . " \" > " ;
2010-01-13 21:59:02 +01:00
2010-06-29 12:35:13 +02:00
print " <p> " . __ ( " Using OPML you can export and import your feeds and Tiny Tiny RSS settings. " );
2010-06-30 11:45:53 +02:00
print " <div class= \" insensitive \" > " . __ ( " Note: Only main settings profile can be migrated using OPML. " ) . " </div> " ;
2010-06-30 11:13:57 +02:00
2010-06-29 12:35:13 +02:00
print " </p> " ;
2010-01-14 09:28:57 +01:00
print " <iframe name= \" upload_iframe \"
2010-01-13 21:59:02 +01:00
style = \ " width: 400px; height: 100px; display: none; \" ></iframe> " ;
print " <form style='display : block' target= \" upload_iframe \"
enctype = \ " multipart/form-data \" method= \" POST \"
action = \ " backend.php \" >
< input id = \ " opml_file \" name= \" opml_file \" type= \" file \" >
< input type = \ " hidden \" name= \" op \" value= \" dlg \" >
< input type = \ " hidden \" name= \" id \" value= \" importOpml \" >
2010-11-21 11:13:34 +01:00
< button dojoType = \ " dijit.form.Button \" onclick= \" return opmlImport(); \"
2010-01-13 21:59:02 +01:00
type = \ " submit \" > " . __ ( 'Import' ) . " </button>
2010-11-21 11:13:34 +01:00
< button dojoType = \ " dijit.form.Button \" onclick= \" gotoExportOpml() \" > " . __ ( 'Export OPML' ) . " </button>
2010-01-13 21:59:02 +01:00
</ form > " ;
2006-10-04 08:16:13 +02:00
2010-06-30 11:13:57 +02:00
print " <p> " . __ ( 'Your OPML can be published publicly and can be subscribed by anyone who knows the URL below.' );
print " <div class= \" insensitive \" > " . __ ( " Note: Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds. " ) . " </div> " . " </p> " ;
2007-08-09 14:45:30 +02:00
2010-11-21 11:13:34 +01:00
print " <button dojoType= \" dijit.form.Button \" onclick= \" return displayDlg('pubOPMLUrl') \" > " .
2010-06-30 11:13:57 +02:00
__ ( 'Display URL' ) . " </button> " ;
2010-11-17 12:49:06 +01:00
print " </div> " ; # pane
2010-11-17 19:41:26 +01:00
if ( strpos ( $_SERVER [ 'HTTP_USER_AGENT' ], " Firefox " ) !== false ) {
2010-11-17 12:49:06 +01:00
print " <div dojoType= \" dijit.layout.AccordionPane \" title= \" " . __ ( 'Firefox integration' ) . " \" > " ;
2007-08-31 02:55:33 +02:00
2010-06-30 11:13:57 +02:00
print " <p> " . __ ( 'This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below.' ) . " </p> " ;
2010-01-12 17:46:07 +01:00
2010-11-17 19:41:26 +01:00
print " <p> " ;
2010-01-12 17:46:07 +01:00
2010-06-30 11:13:57 +02:00
print " <button onclick='window.navigator.registerContentHandler( " .
2007-08-31 02:55:33 +02:00
" \" application/vnd.mozilla.maybe.feed \" , " .
" \" " . add_feed_url () . " \" , " . " \" Tiny Tiny RSS \" )'> " .
2010-01-12 17:46:07 +01:00
__ ( 'Click here to register this site as a feed reader.' ) .
" </button> " ;
2007-08-31 02:55:33 +02:00
2010-06-30 11:13:57 +02:00
print " </p> " ;
2007-08-31 02:55:33 +02:00
2010-11-17 12:49:06 +01:00
print " </div> " ; # pane
}
2010-09-11 09:34:42 +02:00
2010-11-17 12:49:06 +01:00
print " <div dojoType= \" dijit.layout.AccordionPane \" title= \" " . __ ( 'Subscribing using bookmarklet' ) . " \" > " ;
2010-09-11 09:34:42 +02:00
print " <p> " . __ ( " Drag the link below to your browser toolbar, open the feed you're interested in in your browser and click on the link to subscribe to it. " ) . " </p> " ;
$bm_subscribe_url = str_replace ( '%s' , '' , add_feed_url ());
$confirm_str = __ ( 'Subscribe to %s in Tiny Tiny RSS?' );
$bm_url = htmlspecialchars ( " javascript: { if(confirm(' $confirm_str '.replace('%s',window.location.href)))window.location.href=' $bm_subscribe_url '+window.location.href} " );
2010-11-21 11:13:34 +01:00
print " <a href= \" $bm_url\ " class = 'bookmarklet' > " . __('Subscribe in Tiny Tiny RSS'). " </ a > " ;
2010-09-11 09:34:42 +02:00
2010-11-17 12:49:06 +01:00
print " </div> " ; #pane
print " <div dojoType= \" dijit.layout.AccordionPane \" title= \" " . __ ( 'Published articles and generated feeds' ) . " \" > " ;
2007-08-09 14:45:30 +02:00
2008-03-20 06:34:43 +01:00
print " <p> " . __ ( 'Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below.' ) . " </p> " ;
2007-08-09 14:45:30 +02:00
2010-11-08 11:11:56 +01:00
$rss_url = '-2::' . htmlspecialchars ( get_self_url_prefix () .
" /backend.php?op=rss&id=-2&view-mode=all_articles " );;
2010-11-21 11:13:34 +01:00
print " <button dojoType= \" dijit.form.Button \" onclick= \" return displayDlg('generatedFeed', ' $rss_url ') \" > " .
2010-01-12 17:46:07 +01:00
__ ( 'Display URL' ) . " </button> " ;
2010-06-30 11:13:57 +02:00
2010-11-21 11:13:34 +01:00
print " <button dojoType= \" dijit.form.Button \" onclick= \" return clearFeedAccessKeys() \" > " .
2010-11-08 12:51:58 +01:00
__ ( 'Clear all generated URLs' ) . " </button> " ;
2007-08-09 14:45:30 +02:00
2010-11-17 12:49:06 +01:00
print " </div> " ; #pane
print " </div> " ; #container
2006-10-01 12:05:20 +02:00
}
2009-01-23 19:54:57 +01:00
2010-01-11 13:40:35 +01:00
function print_feed_browser ( $link , $search , $limit , $mode = 1 ) {
2009-01-23 19:54:57 +01:00
2009-01-24 06:01:17 +01:00
$owner_uid = $_SESSION [ " uid " ];
if ( $search ) {
$search_qpart = " AND (UPPER(feed_url) LIKE UPPER('% $search %') OR
UPPER ( title ) LIKE UPPER ( '%$search%' )) " ;
} else {
$search_qpart = " " ;
}
2010-01-11 13:40:35 +01:00
if ( $mode == 1 ) {
$result = db_query ( $link , " SELECT feed_url, subscribers FROM
ttrss_feedbrowser_cache WHERE ( SELECT COUNT ( id ) = 0 FROM ttrss_feeds AS tf
WHERE tf . feed_url = ttrss_feedbrowser_cache . feed_url
AND owner_uid = '$owner_uid' ) $search_qpart
ORDER BY subscribers DESC LIMIT $limit " );
} else if ( $mode == 2 ) {
2010-01-13 11:44:20 +01:00
$result = db_query ( $link , " SELECT *,
( SELECT COUNT ( * ) FROM ttrss_user_entries WHERE
orig_feed_id = ttrss_archived_feeds . id ) AS articles_archived
FROM
ttrss_archived_feeds
WHERE
2010-01-11 13:40:35 +01:00
( SELECT COUNT ( * ) FROM ttrss_feeds
WHERE ttrss_feeds . feed_url = ttrss_archived_feeds . feed_url AND
owner_uid = '$owner_uid' ) = 0 AND
owner_uid = '$owner_uid' $search_qpart
ORDER BY id DESC LIMIT $limit " );
}
2009-01-23 19:54:57 +01:00
$feedctr = 0 ;
while ( $line = db_fetch_assoc ( $result )) {
2010-01-11 13:40:35 +01:00
if ( $mode == 1 ) {
2009-01-23 19:54:57 +01:00
2010-07-01 09:47:39 +02:00
$feed_url = $line [ " feed_url " ];
2010-01-11 13:40:35 +01:00
$subscribers = $line [ " subscribers " ];
2010-07-01 09:47:39 +02:00
2010-01-11 13:40:35 +01:00
$det_result = db_query ( $link , " SELECT site_url,title,id
FROM ttrss_feeds WHERE feed_url = '$feed_url' LIMIT 1 " );
$details = db_fetch_assoc ( $det_result );
$icon_file = ICONS_DIR . " / " . $details [ " id " ] . " .ico " ;
if ( file_exists ( $icon_file ) && filesize ( $icon_file ) > 0 ) {
2010-11-18 20:26:04 +01:00
$feed_icon = " <img style= \" vertical-align : middle \" class= \" tinyFeedIcon \" src= \" " . ICONS_URL .
2010-01-11 13:40:35 +01:00
" / " . $details [ " id " ] . " .ico \" > " ;
} else {
$feed_icon = " <img class= \" tinyFeedIcon \" src= \" images/blank_icon.gif \" > " ;
}
2010-11-18 20:26:04 +01:00
$check_box = " <input onclick='toggleSelectListRow2(this)'
dojoType = \ " dijit.form.CheckBox \"
2010-11-20 19:06:36 +01:00
type = \ " checkbox \" \" > " ;
2010-01-11 13:40:35 +01:00
$class = ( $feedctr % 2 ) ? " even " : " odd " ;
2010-07-01 09:47:39 +02:00
$feed_url = htmlspecialchars ( $line [ " feed_url " ]);
2010-01-11 13:40:35 +01:00
if ( $details [ " site_url " ]) {
2010-01-13 11:44:20 +01:00
$site_url = " <a target= \" _blank \" href= \" " .
htmlspecialchars ( $details [ " site_url " ]) . " \" >
2010-01-11 13:40:35 +01:00
< img style = 'border-width : 0px' src = 'images/www.png' alt = 'www' ></ a > " ;
} else {
$site_url = " " ;
}
2010-01-18 13:10:37 +01:00
$feed_url = " <a target= \" _blank \" href= \" $feed_url\ " >< img
style = 'border-width : 0px; vertical-align : middle'
src = 'images/feed-icon-12x12.png' ></ a > " ;
2010-01-13 11:44:20 +01:00
print " <li title= \" " . htmlspecialchars ( $details [ " site_url " ]) . " \"
2010-11-18 20:26:04 +01:00
id = \ " FBROW- " . $details [ " id " ] . " \" > $check_box " .
2010-01-18 13:10:37 +01:00
" $feed_icon $feed_url " . htmlspecialchars ( $details [ " title " ]) .
2010-01-11 13:40:35 +01:00
" <span class='subscribers'>( $subscribers )</span>
2010-01-13 11:44:20 +01:00
$site_url </ li > " ;
2010-01-11 13:40:35 +01:00
} else if ( $mode == 2 ) {
2010-01-13 11:44:20 +01:00
$feed_url = htmlspecialchars ( $line [ " feed_url " ]);
$site_url = htmlspecialchars ( $line [ " site_url " ]);
$title = htmlspecialchars ( $line [ " title " ]);
2010-01-11 14:42:11 +01:00
$icon_file = ICONS_DIR . " / " . $line [ " id " ] . " .ico " ;
2010-01-11 13:40:35 +01:00
2010-01-11 14:42:11 +01:00
if ( file_exists ( $icon_file ) && filesize ( $icon_file ) > 0 ) {
$feed_icon = " <img class= \" tinyFeedIcon \" src= \" " . ICONS_URL .
" / " . $line [ " id " ] . " .ico \" > " ;
} else {
$feed_icon = " <img class= \" tinyFeedIcon \" src= \" images/blank_icon.gif \" > " ;
}
2010-11-20 19:06:36 +01:00
$check_box = " <input onclick='toggleSelectListRow2(this)' dojoType= \" dijit.form.CheckBox \"
type = \ " checkbox \" > " ;
2010-01-11 13:40:35 +01:00
$class = ( $feedctr % 2 ) ? " even " : " odd " ;
2010-01-13 11:44:20 +01:00
if ( $line [ 'articles_archived' ] > 0 ) {
$archived = sprintf ( __ ( " %d archived articles " ), $line [ 'articles_archived' ]);
$archived = " <span class='subscribers'>( $archived )</span> " ;
} else {
$archived = '' ;
}
2010-01-11 13:40:35 +01:00
if ( $line [ " site_url " ]) {
2010-01-13 11:44:20 +01:00
$site_url = " <a target= \" _blank \" href= \" $site_url\ " >
2010-01-11 13:40:35 +01:00
< img style = 'border-width : 0px' src = 'images/www.png' alt = 'www' ></ a > " ;
} else {
$site_url = " " ;
}
2010-01-18 13:10:37 +01:00
$feed_url = " <a target= \" _blank \" href= \" $feed_url\ " >< img
style = 'border-width : 0px; vertical-align : middle'
src = 'images/feed-icon-12x12.png' ></ a > " ;
2010-01-13 11:44:20 +01:00
print " <li title=' " . $line [ 'site_url' ] . " ' class=' $class '
id = \ " FBROW- " . $line [ " id " ] . " \" > " .
2010-01-18 13:10:37 +01:00
$check_box . " $feed_icon $feed_url " . $title .
$archived . $site_url . " </li> " ;
2009-01-23 19:54:57 +01:00
2009-01-24 06:14:06 +01:00
}
2010-01-11 13:40:35 +01:00
++ $feedctr ;
2009-01-23 19:54:57 +01:00
}
if ( $feedctr == 0 ) {
print " <li style= \" text-align : center \" ><p> " . __ ( 'No feeds found.' ) . " </p></li> " ;
}
return $feedctr ;
}
2010-01-13 10:48:49 +01:00
2006-10-01 12:05:20 +02:00
?>