Update of /cvsroot/phpslash/phpslash-ft/public_html
In directory usw-pr-cvs1:/tmp/cvs-serv22395/public_html
Modified Files:
backend.php3 config.php3
Log Message:
config cleanup
Index: backend.php3
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/public_html/backend.php3,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** backend.php3 19 Mar 2002 16:13:12 -0000 1.23
--- backend.php3 19 Mar 2002 16:25:17 -0000 1.24
***************
*** 49,53 ****
// TODO: Remove these
! $pagetitle="Backend"; # The name to be displayed in the header
$xsiteobject = "Backend"; # This Defines The META Tag Object Type
--- 49,53 ----
// TODO: Remove these
! $pagetitle ="Backend"; # The name to be displayed in the header
$xsiteobject = "Backend"; # This Defines The META Tag Object Type
***************
*** 140,143 ****
--- 140,144 ----
'SITE_OWNER' => $_PSL['site_owner'],
'SITE_HOST' => $HTTP_HOST, // TODO: nh asks: Will this be around with register_globals=Off?
+ 'DESCRIPTION' => $_PSL['metatags']['description'],
'PHP_SELF' => $_PSL['phpself'],
'ROOTDIR' => $_PSL['rooturl'],
Index: config.php3
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config.php3,v
retrieving revision 1.131
retrieving revision 1.132
diff -C2 -d -r1.131 -r1.132
*** config.php3 19 Mar 2002 16:13:12 -0000 1.131
--- config.php3 19 Mar 2002 16:25:17 -0000 1.132
***************
*** 118,128 ****
$_PSL['language'] = "en"; // default language ( ISO format)
! $_PSL['article_updatehits'] = true; // Keeps track of hits on a story,
// the drawback is an extra DB query.
! $_PSL['site_name'] = "PHPSlash";
! $_PSL['site_owner'] = "in...@ph...";
$_PSL['site_slogan'] = "Slash for you, Slash for me";
! $_PSL['site_title'] = "PHPSlash: The Web Stops Here";
$_PSL['mailinglist_subject'] = "PHPSlash Times";
--- 118,143 ----
$_PSL['language'] = "en"; // default language ( ISO format)
! $_PSL['article_updatehits'] = true; // Keeps track of hits on a story,
// the drawback is an extra DB query.
+ /********************
+ These values are used in your RSS Feeds generated by backend.php3 as
+ well as by phpslash for the pages your views see. Please take a moment
+ and adjust these to the correct value
+ *********************/
+ // Name of the site
+ $_PSL['site_name'] = "PHPSlash";
! // Email address to reach a human
! $_PSL['site_owner'] = "in...@ph...";
!
! // A catch phrase for your site
$_PSL['site_slogan'] = "Slash for you, Slash for me";
!
! // A Longer version of the title
! $_PSL['site_title'] = "PHPSlash: The Web Stops Here";
!
! /* END RSS EXPORTER VALUES */
!
! // The subject for the headline email
$_PSL['mailinglist_subject'] = "PHPSlash Times";
***************
*** 133,145 ****
$_PSL['bar_limit'] = 5; // default number of icons in bar
! // metatags that may need to be overwritten later ( article description).
! // other metatags should probably just reside in slashHead.tpl
$metatags['keywords'] = "weblog, content management, php";
$metatags['description'] = "phpSlash is a port of the slash-0.2 code from Perl to PHP. Since it was first started, phpslash has become a different beast of its own. It currently boasts full HTML templates, an OO design, the ability to operate in a hosted environment, and a bunch of other goodies.";
$_PSL['metatags'] = $metatags;
! /*
! the comment_defaultmode variable allows you to define how the comments
will look the first time a visitor views a story. It can be one of the
following options:
--- 148,163 ----
$_PSL['bar_limit'] = 5; // default number of icons in bar
! // Metatags that may need to be overwritten later (article description).
! // Other metatags should probably just reside in slashHead.tpl
$metatags['keywords'] = "weblog, content management, php";
+
+ // Note that this too is used by the backend module in your RSS feed.
+ // Please change it!
$metatags['description'] = "phpSlash is a port of the slash-0.2 code from Perl to PHP. Since it was first started, phpslash has become a different beast of its own. It currently boasts full HTML templates, an OO design, the ability to operate in a hosted environment, and a bunch of other goodies.";
$_PSL['metatags'] = $metatags;
! /******************************************************************
! The comment_defaultmode variable allows you to define how the comments
will look the first time a visitor views a story. It can be one of the
following options:
***************
*** 154,163 ****
none: no comments are displayed.
! */
$_PSL['comment_defaultmode'] = "nested";
! $_PSL['search_maxresults'] = 20; /* the number of results to return when searching */
! $_PSL['allow_comment_search'] = TRUE; /* Do we allow search od the comments as well? */
/* if set to true then when you click "edit as story", the submission
--- 172,183 ----
none: no comments are displayed.
! *******************************************************************/
$_PSL['comment_defaultmode'] = "nested";
! /* the number of results to return when searching */
! $_PSL['search_maxresults'] = 20;
! /* Do we allow search of the comments as well? */
! $_PSL['allow_comment_search'] = TRUE;
/* if set to true then when you click "edit as story", the submission
|