From: <wen...@us...> - 2003-10-17 21:18:35
|
Update of /cvsroot/phpwebsite-comm/modules/rssfeeds/conf In directory sc8-pr-cvs1:/tmp/cvs-serv5117/conf Modified Files: help.php layout.php manager.php Log Message: 0.1.0 Changes Index: help.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rssfeeds/conf/help.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** help.php 8 Jul 2003 19:34:48 -0000 1.1.1.1 --- help.php 17 Oct 2003 21:17:47 -0000 1.2 *************** *** 37,42 **** $rssAddMenuLink_content = "Click this button to create a menu item that links to (displays) this listing of available feeds."; $rssExpire = $_SESSION['translate']->it("Expiration"); ! $rssExpire = "Select the number of minutes for the RSS Feed to expire from the cache."; $rssTarget = $_SESSION['translate']->it("Target Window"); ! $rssTarget = "Choose the target window for links to open in when an article or title is clicked."; ?> --- 37,46 ---- $rssAddMenuLink_content = "Click this button to create a menu item that links to (displays) this listing of available feeds."; $rssExpire = $_SESSION['translate']->it("Expiration"); ! $rssExpire_content = "Select the number of minutes for the RSS Feed to expire from the cache."; $rssTarget = $_SESSION['translate']->it("Target Window"); ! $rssTarget_content = "Choose the target window for links to open in when an article or title is clicked."; ! $allowView = $_SESSION['translate']->it("Allow Block View"); ! $allowView_content = "The allow view option allows you to choose when the block will show up on the page. Choose which modules need to be active in order for the block to appear."; ! $pmView = $_SESSION['translate']->it("View with Pagemaster pages"); ! $pmView_content = "The view with Pagemaster pages option allows you to choose which pages the block will show up on. Choose which pages need to be active in order for the block to appear."; ?> Index: layout.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rssfeeds/conf/layout.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** layout.php 8 Jul 2003 19:34:48 -0000 1.1.1.1 --- layout.php 17 Oct 2003 21:17:47 -0000 1.2 *************** *** 18,22 **** $layout_info[] = array ("content_var"=>"CNT_rssfeeds_block", "theme_var"=>"right_col_mid", ! "home_only"=>1); ?> --- 18,22 ---- $layout_info[] = array ("content_var"=>"CNT_rssfeeds_block", "theme_var"=>"right_col_mid", ! "home_only"=>0); ?> Index: manager.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rssfeeds/conf/manager.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** manager.php 8 Jul 2003 19:34:48 -0000 1.1.1.1 --- manager.php 17 Oct 2003 21:17:47 -0000 1.2 *************** *** 19,22 **** --- 19,24 ---- $show = $_SESSION['translate']->it("Show"); $view = $_SESSION['translate']->it("View"); + $link = $_SESSION['translate']->it("Link"); + $desc = $_SESSION['translate']->it("Description"); /* define the lists manager will control and *************** *** 45,49 **** "delete"=>$delete, "hide"=>$hide, ! "show"=>$show); /* for the admin list, indicate what permissions are required for each action; --- 47,52 ---- "delete"=>$delete, "hide"=>$hide, ! "show"=>$show, ! "link"=>$link); /* for the admin list, indicate what permissions are required for each action; *************** *** 54,58 **** "delete"=>NULL, "hide"=>NULL, ! "show"=>NULL); /* for the admin list, provide parameters for paging the list */ --- 57,62 ---- "delete"=>NULL, "hide"=>NULL, ! "show"=>NULL, ! "link"=>NULL); /* for the admin list, provide parameters for paging the list */ *************** *** 67,72 **** $userColumns = array("label"=>$label, ! "footer"=>$footer, ! "id"=>$id); $userActions = array("view"=>$view); --- 71,75 ---- $userColumns = array("label"=>$label, ! "channel_desc"=>$desc); $userActions = array("view"=>$view); |