Update of /cvsroot/phpwiki/phpwiki
In directory usw-pr-cvs1:/tmp/cvs-serv25086
Modified Files:
index.php
Log Message:
Reverted WikiName constant to undefined, since this is checked in config.php. Minor changes to some comments.
Index: index.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/index.php,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -r1.48 -r1.49
*** index.php 2002/01/03 00:09:15 1.48
--- index.php 2002/01/03 05:10:33 1.49
***************
*** 52,56 ****
// This is used to generate a keywords meta tag in the HTML templates,
// and during RSS generation for the <title> of the RSS channel.
! define('WIKI_NAME', 'PhpWiki');
// If set, we will perform reverse dns lookups to try to convert the users
--- 52,56 ----
// This is used to generate a keywords meta tag in the HTML templates,
// and during RSS generation for the <title> of the RSS channel.
! //define('WIKI_NAME', 'PhpWiki');
// If set, we will perform reverse dns lookups to try to convert the users
***************
*** 202,206 ****
// Keep up to 8 major edits, but keep them no longer than a month.
$ExpireParams['major'] = array('max_age' => 32,
! 'keep' => 8);
// Keep up to 4 minor edits, but keep them no longer than a week.
$ExpireParams['minor'] = array('max_age' => 7,
--- 202,206 ----
// Keep up to 8 major edits, but keep them no longer than a month.
$ExpireParams['major'] = array('max_age' => 32,
! 'keep' => 8);
// Keep up to 4 minor edits, but keep them no longer than a week.
$ExpireParams['minor'] = array('max_age' => 7,
***************
*** 236,242 ****
define("CHARSET", "iso-8859-1");
! // Select your language/locale - default language "C": English
! // other languages available: Dutch "nl", Spanish "es", German "de",
! // Swedish "sv", and Italian, "it".
//
// If you set $LANG to the empty string, your systems default
--- 236,247 ----
define("CHARSET", "iso-8859-1");
! // Select your language/locale - default language is "C" for English.
! // Other languages available:
! // English "C" (English - HomePage)
! // Dutch "nl" (Nederlands - ThuisPagina)
! // Spanish "es" (Español - PáginaPrincipal)
! // German "de" (Deutsch - StartSeite)
! // Swedish "sv" (Svenska - Framsida)
! // Italian "it" (Italiano - PaginaPrincipale)
//
// If you set $LANG to the empty string, your systems default
***************
*** 279,282 ****
--- 284,289 ----
// you should make sure that it's companion 'phpwiki-heavy.css'
// is installed in the same directory that the base style file is.
+ // FIXME: These default CSS key names could use localization, but
+ // gettext() is not available at this point yet
$CSS_URLS = array(
'PhpWiki' => "phpwiki.css",
|