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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859
|
<?php //-*-php-*-
rcs_id('$Id: main.php,v 1.223 2006/03/19 15:01:00 rurban Exp $');
/*
Copyright 1999,2000,2001,2002,2004,2005,2006 $ThePhpWikiProgrammingTeam
This file is part of PhpWiki.
PhpWiki is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
PhpWiki is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with PhpWiki; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
define ('USE_PREFS_IN_PAGE', true);
//include "lib/config.php";
require_once(dirname(__FILE__)."/stdlib.php");
require_once('lib/Request.php');
require_once('lib/WikiDB.php');
if (ENABLE_USER_NEW)
require_once("lib/WikiUserNew.php");
else
require_once("lib/WikiUser.php");
require_once("lib/WikiGroup.php");
if (ENABLE_PAGEPERM)
require_once("lib/PagePerm.php");
/**
* Check permission per page.
* Returns true or false.
*/
function mayAccessPage ($access, $pagename) {
if (ENABLE_PAGEPERM)
return _requiredAuthorityForPagename($access, $pagename); // typically [10-20ms per page]
else
return true;
}
class WikiRequest extends Request {
// var $_dbi;
function WikiRequest () {
$this->_dbi = WikiDB::open($GLOBALS['DBParams']);
// first mysql request costs [958ms]! [670ms] is mysql_connect()
if (in_array('File', $this->_dbi->getAuthParam('USER_AUTH_ORDER'))) {
// force our local copy, until the pear version is fixed.
include_once(dirname(__FILE__)."/pear/File_Passwd.php");
}
if (ENABLE_USER_NEW) {
// Preload all necessary userclasses. Otherwise session => __PHP_Incomplete_Class_Name
// There's no way to demand-load it later. This way it's much slower, but needs slightly
// less memory than loading all.
if (ALLOW_BOGO_LOGIN)
include_once("lib/WikiUser/BogoLogin.php");
// UserPreferences POST Update doesn't reach this.
foreach ($GLOBALS['USER_AUTH_ORDER'] as $method) {
include_once("lib/WikiUser/$method.php");
if ($method == 'Db')
switch( DATABASE_TYPE ) {
case 'SQL' : include_once("lib/WikiUser/PearDb.php"); break;
case 'ADODB': include_once("lib/WikiUser/AdoDb.php"); break;
case 'PDO' : include_once("lib/WikiUser/PdoDb.php"); break;
}
}
unset($method);
}
if (USE_DB_SESSION) {
include_once('lib/DbSession.php');
$dbi =& $this->_dbi;
$this->_dbsession = new DbSession($dbi, $dbi->getParam('prefix')
. $dbi->getParam('db_session_table'));
}
// Fixme: Does pear reset the error mask to 1? We have to find the culprit
//$x = error_reporting();
$this->version = phpwiki_version();
$this->Request(); // [90ms]
// Normalize args...
$this->setArg('pagename', $this->_deducePagename());
$this->setArg('action', $this->_deduceAction());
if ((DEBUG & _DEBUG_SQL)
or (DATABASE_OPTIMISE_FREQUENCY > 0 and
(time() % DATABASE_OPTIMISE_FREQUENCY == 0))) {
if ($this->_dbi->_backend->optimize())
trigger_error(_("Optimizing database"), E_USER_NOTICE);
}
// Restore auth state. This doesn't check for proper authorization!
$userid = $this->_deduceUsername();
if (ENABLE_USER_NEW) {
if (isset($this->_user) and
!empty($this->_user->_authhow) and
$this->_user->_authhow == 'session')
{
// users might switch in a session between the two objects.
// restore old auth level here or in updateAuthAndPrefs?
//$user = $this->getSessionVar('wiki_user');
// revive db handle, because these don't survive sessions
if (isset($this->_user) and
( ! isa($this->_user, WikiUserClassname())
or (strtolower(get_class($this->_user)) == '_passuser')))
{
$this->_user = WikiUser($userid, $this->_user->_prefs);
}
// revive other db handle
if (isset($this->_user->_prefs->_method)
and ($this->_user->_prefs->_method == 'SQL'
or $this->_user->_prefs->_method == 'ADODB'
or $this->_user->_prefs->_method == 'PDO'
or $this->_user->_prefs->_method == 'HomePage')) {
$this->_user->_HomePagehandle = $this->getPage($userid);
}
// need to update the lockfile filehandle
if ( isa($this->_user, '_FilePassUser')
and $this->_user->_file->lockfile
and !$this->_user->_file->fplock )
{
//$level = $this->_user->_level;
$this->_user = UpgradeUser($this->_user,
new _FilePassUser($userid,
$this->_user->_prefs,
$this->_user->_file->filename));
//$this->_user->_level = $level;
}
$this->_prefs = & $this->_user->_prefs;
} else {
$user = WikiUser($userid);
$this->_user = & $user;
$this->_prefs = & $this->_user->_prefs;
}
} else {
$this->_user = new WikiUser($this, $userid);
$this->_prefs = $this->_user->getPreferences();
}
}
function initializeLang () {
// check non-default pref lang
$_lang = @$this->_prefs->_prefs['lang'];
if (isset($_lang->lang) and $_lang->lang != $GLOBALS['LANG']) {
$user_lang = $_lang->lang;
//check changed LANG and THEME inside a session.
// (e.g. by using another baseurl)
if (isset($this->_user->_authhow) and $this->_user->_authhow == 'session')
$user_lang = $GLOBALS['LANG'];
update_locale($user_lang);
FindLocalizedButtonFile(".",'missing_ok','reinit');
}
}
function initializeTheme () {
global $WikiTheme;
// Load non-default theme
$_theme = @$this->_prefs->_prefs['theme'];
if ($_theme and isset($_theme->theme))
$user_theme = $_theme->theme;
else
$user_theme = $this->getPref('theme');
//check changed LANG and THEME inside a session.
// (e.g. by using another baseurl)
if (isset($this->_user->_authhow)
and $this->_user->_authhow == 'session'
and !isset($_theme->theme)
and defined('THEME')
and $user_theme != THEME)
{
include_once("themes/" . THEME . "/themeinfo.php");
}
if (empty($WikiTheme) and isset($user_theme)) {
if (strcspn($user_theme,"./\x00]") != strlen($user_theme)) {
trigger_error(sprintf("invalid theme '%s': Invalid characters detected", $user_theme),
E_USER_WARNING);
$user_theme = "default";
}
include_once("themes/$user_theme/themeinfo.php");
}
if (empty($WikiTheme) and defined('THEME'))
include_once("themes/" . THEME . "/themeinfo.php");
if (empty($WikiTheme))
include_once("themes/default/themeinfo.php");
assert(!empty($WikiTheme));
}
// This really maybe should be part of the constructor, but since it
// may involve HTML/template output, the global $request really needs
// to be initialized before we do this stuff.
// [50ms]: 36ms if wikidb_page::exists
function updateAuthAndPrefs () {
if (isset($this->_user) and (!isa($this->_user, WikiUserClassname()))) {
$this->_user = false;
}
// Handle authentication request, if any.
if ($auth_args = $this->getArg('auth')) {
$this->setArg('auth', false);
$this->_handleAuthRequest($auth_args); // possible NORETURN
}
elseif ( ! $this->_user
or (isa($this->_user, WikiUserClassname())
and ! $this->_user->isSignedIn())) {
// If not auth request, try to sign in as saved user.
if (($saved_user = $this->getPref('userid')) != false) {
$this->_signIn($saved_user);
}
}
$action = $this->getArg('action');
// Save preferences in session and cookie
if ((defined('WIKI_XMLRPC') and !WIKI_XMLRPC) or $action != 'xmlrpc') {
if (isset($this->_user)) {
if (!isset($this->_user->_authhow) or $this->_user->_authhow != 'session') {
$this->_user->setPreferences($this->_prefs, true);
}
}
$this->setSessionVar('wiki_user', $this->_user);
}
// Ensure user has permissions for action
// HACK ALERT: We may not set the request arg to create,
// since the pageeditor has an ugly logic for action == create.
if ($action == 'edit' or $action == 'create') {
$page = $this->getPage();
if (! $page->exists() )
$action = 'create';
else
$action = 'edit';
}
if (! ENABLE_PAGEPERM) { // Bug #1438392 by Matt Brown
$require_level = $this->requiredAuthority($action);
if (! $this->_user->hasAuthority($require_level))
$this->_notAuthorized($require_level); // NORETURN
} else {
// novatrope patch to let only _AUTHENTICATED view pages.
// If there's not enough authority or forbidden, ask for a password,
// unless it's explicitly unobtainable. Some bad magic though.
if ($this->requiredAuthorityForAction($action) == WIKIAUTH_UNOBTAINABLE) {
$require_level = $this->requiredAuthority($action);
$this->_notAuthorized($require_level); // NORETURN
}
}
}
function & getUser () {
if (isset($this->_user))
return $this->_user;
else
return $GLOBALS['ForbiddenUser'];
}
function & getGroup () {
if (isset($this->_user) and isset($this->_user->_group))
return $this->_user->_group;
else {
// Debug Strict: Only variable references should be returned by reference
$this->_user->_group = WikiGroup::getGroup();
return $this->_user->_group;
}
}
function & getPrefs () {
return $this->_prefs;
}
// Convenience function:
function getPref ($key) {
if (isset($this->_prefs)) {
return $this->_prefs->get($key);
}
}
function & getDbh () {
return $this->_dbi;
}
/**
* Get requested page from the page database.
* By default it will grab the page requested via the URL
*
* This is a convenience function.
* @param string $pagename Name of page to get.
* @return WikiDB_Page Object with methods to pull data from
* database for the page requested.
*/
function getPage ($pagename = false) {
//if (!isset($this->_dbi)) $this->getDbh();
if (!$pagename)
$pagename = $this->getArg('pagename');
return $this->_dbi->getPage($pagename);
}
/** Get URL for POST actions.
*
* Officially, we should just use SCRIPT_NAME (or some such),
* but that causes problems when we try to issue a redirect, e.g.
* after saving a page.
*
* Some browsers (at least NS4 and Mozilla 0.97 won't accept
* a redirect from a page to itself.)
*
* So, as a HACK, we include pagename and action as query args in
* the URL. (These should be ignored when we receive the POST
* request.)
*/
function getPostURL ($pagename=false) {
global $HTTP_GET_VARS;
if ($pagename === false)
$pagename = $this->getArg('pagename');
$action = $this->getArg('action');
if (!empty($HTTP_GET_VARS['start_debug'])) // zend ide support
return WikiURL($pagename, array('action' => $action, 'start_debug' => 1));
else
return WikiURL($pagename, array('action' => $action));
}
function _handleAuthRequest ($auth_args) {
if (!is_array($auth_args))
return;
// Ignore password unless POST'ed.
if (!$this->isPost())
unset($auth_args['passwd']);
$olduser = $this->_user;
$user = $this->_user->AuthCheck($auth_args);
if (isa($user, WikiUserClassname())) {
// Successful login (or logout.)
$this->_setUser($user);
}
elseif (is_string($user)) {
// Login attempt failed.
$fail_message = $user;
$auth_args['pass_required'] = true;
// if clicked just on to the "sign in as:" button dont print invalid username.
if (!empty($auth_args['login']) and empty($auth_args['userid']))
$fail_message = '';
// If no password was submitted, it's not really
// a failure --- just need to prompt for password...
if (!ALLOW_USER_PASSWORDS
and ALLOW_BOGO_LOGIN
and !isset($auth_args['passwd']))
{
$fail_message = false;
}
$olduser->PrintLoginForm($this, $auth_args, $fail_message, 'newpage');
$this->finish(); //NORETURN
}
else {
// Login request cancelled.
}
}
/**
* Attempt to sign in (bogo-login).
*
* Fails silently.
*
* @param $userid string Userid to attempt to sign in as.
* @access private
*/
function _signIn ($userid) {
if (ENABLE_USER_NEW) {
if (! $this->_user )
$this->_user = new _BogoUser($userid);
// FIXME: is this always false? shouldn't we try passuser first?
if (! $this->_user )
$this->_user = new _PassUser($userid);
}
$user = $this->_user->AuthCheck(array('userid' => $userid));
if (isa($user, WikiUserClassname())) {
$this->_setUser($user); // success!
}
}
// login or logout or restore state
function _setUser (&$user) {
$this->_user =& $user;
if (defined('MAIN_setUser')) return; // don't set cookies twice
$this->setCookieVar(getCookieName(), $user->getAuthenticatedId(),
COOKIE_EXPIRATION_DAYS, COOKIE_DOMAIN);
if ($user->isSignedIn())
$user->_authhow = 'signin';
// Save userid to prefs..
if ( empty($this->_user->_prefs)) {
$this->_user->_prefs = $this->_user->getPreferences();
$this->_prefs =& $this->_user->_prefs;
}
$this->_user->_group = $this->getGroup();
$this->setSessionVar('wiki_user', $user);
$this->_prefs->set('userid',
$user->isSignedIn() ? $user->getId() : '');
$this->initializeTheme();
define('MAIN_setUser', true);
}
/* Permission system */
function getLevelDescription($level) {
static $levels = false;
if (!$levels) // This looks like a Visual Basic hack. For the very same reason. "0"
$levels = array('x-1' => _("FORBIDDEN"),
'x0' => _("ANON"),
'x1' => _("BOGO"),
'x2' => _("USER"),
'x10' => _("ADMIN"),
'x100'=> _("UNOBTAINABLE"));
if (!empty($level))
$level = '0';
if (!empty($levels["x".$level]))
return $levels["x".$level];
else
return _("ANON");
}
function _notAuthorized ($require_level) {
// Display the authority message in the Wiki's default
// language, in case it is not english.
//
// Note that normally a user will not see such an error once
// logged in, unless the admin has altered the default
// disallowed wikiactions. In that case we should probably
// check the user's language prefs too at this point; this
// would be a situation which is not really handled with the
// current code.
if (empty($GLOBALS['LANG']))
update_locale(DEFAULT_LANGUAGE);
// User does not have required authority. Prompt for login.
$what = $this->getActionDescription($this->getArg('action'));
$pass_required = ($require_level >= WIKIAUTH_USER);
if ($require_level == WIKIAUTH_UNOBTAINABLE) {
global $DisabledActions;
if ($DisabledActions and in_array($action, $DisabledActions)) {
$msg = fmt("%s is disallowed on this wiki.",
$this->getDisallowedActionDescription($this->getArg('action')));
$this->finish();
return;
}
// Is the reason a missing ACL or just wrong user or password?
if (class_exists('PagePermission')) {
$user =& $this->_user;
$status = $user->isAuthenticated() ? _("authenticated") : _("not authenticated");
$msg = fmt("%s %s %s is disallowed on this wiki for %s user '%s' (level: %s).",
_("Missing PagePermission:"),
action2access($this->getArg('action')),
$this->getArg('pagename'),
$status, $user->getId(), $this->getLevelDescription($user->_level));
// TODO: add link to action=setacl
$user->PrintLoginForm($this, compact('pass_required'), $msg);
$this->finish();
return;
} else {
$msg = fmt("%s is disallowed on this wiki.",
$this->getDisallowedActionDescription($this->getArg('action')));
$this->_user->PrintLoginForm($this, compact('require_level','pass_required'), $msg);
$this->finish();
return;
}
}
elseif ($require_level == WIKIAUTH_BOGO)
$msg = fmt("You must sign in to %s.", $what);
elseif ($require_level == WIKIAUTH_USER)
$msg = fmt("You must log in to %s.", $what);
elseif ($require_level == WIKIAUTH_ANON)
$msg = fmt("Access for you is forbidden to %s.", $what);
else
$msg = fmt("You must be an administrator to %s.", $what);
$this->_user->PrintLoginForm($this, compact('require_level','pass_required'), $msg);
$this->finish(); // NORETURN
}
// Fixme: for PagePermissions we'll need other strings,
// relevant to the requested page, not just for the action on the whole wiki.
function getActionDescription($action) {
static $actionDescriptions;
if (! $actionDescriptions) {
$actionDescriptions
= array('browse' => _("view this page"),
'diff' => _("diff this page"),
'dumphtml' => _("dump html pages"),
'dumpserial' => _("dump serial pages"),
'edit' => _("edit this page"),
'revert' => _("revert to a previous version of this page"),
'create' => _("create this page"),
'loadfile' => _("load files into this wiki"),
'lock' => _("lock this page"),
'remove' => _("remove this page"),
'unlock' => _("unlock this page"),
'upload' => _("upload a zip dump"),
'verify' => _("verify the current action"),
'viewsource' => _("view the source of this page"),
'xmlrpc' => _("access this wiki via XML-RPC"),
'soap' => _("access this wiki via SOAP"),
'zip' => _("download a zip dump from this wiki"),
'ziphtml' => _("download a html zip dump from this wiki")
);
}
if (in_array($action, array_keys($actionDescriptions)))
return $actionDescriptions[$action];
else
return $action;
}
/**
TODO: check against these cases:
if ($DisabledActions and in_array($action, $DisabledActions))
return WIKIAUTH_UNOBTAINABLE;
if (ENABLE_PAGEPERM and class_exists("PagePermission")) {
return requiredAuthorityForPage($action);
=> Browsing pages is disallowed on this wiki for authenticated user 'rurban' (level: BOGO).
*/
function getDisallowedActionDescription($action) {
static $disallowedActionDescriptions;
if (! $disallowedActionDescriptions) {
$disallowedActionDescriptions
= array('browse' => _("Browsing pages"),
'diff' => _("Diffing pages"),
'dumphtml' => _("Dumping html pages"),
'dumpserial' => _("Dumping serial pages"),
'edit' => _("Editing pages"),
'revert' => _("Reverting to a previous version of pages"),
'create' => _("Creating pages"),
'loadfile' => _("Loading files"),
'lock' => _("Locking pages"),
'remove' => _("Removing pages"),
'unlock' => _("Unlocking pages"),
'upload' => _("Uploading zip dumps"),
'verify' => _("Verify the current action"),
'viewsource' => _("Viewing the source of pages"),
'xmlrpc' => _("XML-RPC access"),
'soap' => _("SOAP access"),
'zip' => _("Downloading zip dumps"),
'ziphtml' => _("Downloading html zip dumps")
);
}
if (in_array($action, array_keys($disallowedActionDescriptions)))
return $disallowedActionDescriptions[$action];
else
return $action;
}
function requiredAuthority ($action) {
$auth = $this->requiredAuthorityForAction($action);
if (!ALLOW_ANON_USER) return WIKIAUTH_USER;
/*
* This is a hook for plugins to require authority
* for posting to them.
*
* IMPORTANT: This is not a secure check, so the plugin
* may not assume that any POSTs to it are authorized.
* All this does is cause PhpWiki to prompt for login
* if the user doesn't have the required authority.
*/
if ($this->isPost()) {
$post_auth = $this->getArg('require_authority_for_post');
if ($post_auth !== false)
$auth = max($auth, $post_auth);
}
return $auth;
}
function requiredAuthorityForAction ($action) {
global $DisabledActions;
if ($DisabledActions and in_array($action, $DisabledActions))
return WIKIAUTH_UNOBTAINABLE;
if (ENABLE_PAGEPERM and class_exists("PagePermission")) {
return requiredAuthorityForPage($action);
} else {
// FIXME: clean up.
switch ($action) {
case 'browse':
case 'viewsource':
case 'diff':
case 'select':
case 'xmlrpc':
case 'search':
case 'pdf':
case 'captcha':
return WIKIAUTH_ANON;
case 'zip':
case 'ziphtml':
if (defined('ZIPDUMP_AUTH') && ZIPDUMP_AUTH)
return WIKIAUTH_ADMIN;
return WIKIAUTH_ANON;
case 'edit':
case 'revert':
case 'soap':
if (defined('REQUIRE_SIGNIN_BEFORE_EDIT') && REQUIRE_SIGNIN_BEFORE_EDIT)
return WIKIAUTH_BOGO;
return WIKIAUTH_ANON;
// return WIKIAUTH_BOGO;
case 'create':
$page = $this->getPage();
$current = $page->getCurrentRevision();
if ($current->hasDefaultContents())
return $this->requiredAuthorityForAction('edit');
return $this->requiredAuthorityForAction('browse');
case 'upload':
case 'dumpserial':
case 'dumphtml':
case 'loadfile':
case 'remove':
case 'lock':
case 'unlock':
case 'upgrade':
case 'chown':
case 'setacl':
case 'rename':
return WIKIAUTH_ADMIN;
/* authcheck occurs only in the plugin.
required actionpage RateIt */
/*
case 'rate':
case 'delete_rating':
// Perhaps this should be WIKIAUTH_USER
return WIKIAUTH_BOGO;
*/
default:
global $WikiNameRegexp;
if (preg_match("/$WikiNameRegexp\Z/A", $action))
return WIKIAUTH_ANON; // ActionPage.
else
return WIKIAUTH_ADMIN;
}
}
}
/* End of Permission system */
function possiblyDeflowerVirginWiki () {
if ($this->getArg('action') != 'browse')
return;
if ($this->getArg('pagename') != HOME_PAGE)
return;
$page = $this->getPage();
$current = $page->getCurrentRevision();
if ($current->getVersion() > 0)
return; // Homepage exists.
include_once('lib/loadsave.php');
SetupWiki($this);
$this->finish(); // NORETURN
}
// [574ms] mainly template:printexpansion: 393ms and template::expandsubtemplate [100+70+60ms]
function handleAction () {
$action = $this->getArg('action');
if ($this->isPost() and !$this->_user->isAdmin() and $action != 'browse') {
$page = $this->getPage();
if ( $page->get('moderation') ) {
require_once("lib/WikiPlugin.php");
$loader = new WikiPluginLoader();
$plugin = $loader->getPlugin("ModeratedPage");
if ($plugin->handler($this, $page)) {
$CONTENT = HTML::div
(
array('class' => 'wiki-edithelp'),
fmt("%s: action forwarded to a moderator.",
$action),
HTML::br(),
_("This action requires moderator approval. Please be patient."));
if (!empty($plugin->_tokens['CONTENT']))
$plugin->_tokens['CONTENT']->pushContent
(
HTML::br(),
_("You must wait for moderator approval."));
else
$plugin->_tokens['CONTENT'] = $CONTENT;
require_once("lib/Template.php");
$title = WikiLink($page->getName());
$title->pushContent(' : ', WikiLink(_("ModeratedPage")));
GeneratePage(Template('browse', $plugin->_tokens),
$title,
$page->getCurrentRevision());
$this->finish();
}
}
}
$method = "action_$action";
if (method_exists($this, $method)) {
$this->{$method}();
}
elseif ($page = $this->findActionPage($action)) {
$this->actionpage($page);
}
else {
$this->finish(fmt("%s: Bad action", $action));
}
}
function finish ($errormsg = false) {
static $in_exit = 0;
if ($in_exit)
exit(); // just in case CloseDataBase calls us
$in_exit = true;
global $ErrorManager;
$ErrorManager->flushPostponedErrors();
if (!empty($errormsg)) {
PrintXML(HTML::br(),
HTML::hr(),
HTML::h2(_("Fatal PhpWiki Error")),
$errormsg);
// HACK:
echo "\n</body></html>";
}
if (is_object($this->_user)) {
$this->_user->page = $this->getArg('pagename');
$this->_user->action = $this->getArg('action');
unset($this->_user->_HomePagehandle);
unset($this->_user->_auth_dbi);
}
Request::finish();
exit;
}
/**
* Generally pagename is rawurlencoded for older browsers or mozilla.
* Typing a pagename into the IE bar will utf-8 encode it, so we have to
* fix that with fixTitleEncoding().
* If USE_PATH_INFO = true, the pagename is stripped from the "/DATA_PATH/PageName&arg=value" line.
* If false, we support either "/index.php?pagename=PageName&arg=value",
* or the first arg (1.2.x style): "/index.php?PageName&arg=value"
*/
function _deducePagename () {
if (trim(rawurldecode($this->getArg('pagename'))))
return fixTitleEncoding(rawurldecode($this->getArg('pagename')));
if (USE_PATH_INFO) {
$pathinfo = $this->get('PATH_INFO');
if (empty($pathinfo)) { // fix for CGI
$path = $this->get('REQUEST_URI');
$script = $this->get('SCRIPT_NAME');
$pathinfo = substr($path,strlen($script));
$pathinfo = preg_replace('/\?.+$/','',$pathinfo);
}
$tail = substr($pathinfo, strlen(PATH_INFO_PREFIX));
if (trim($tail) != '' and $pathinfo == PATH_INFO_PREFIX . $tail) {
return fixTitleEncoding($tail);
}
}
elseif ($this->isPost()) {
/*
* In general, for security reasons, HTTP_GET_VARS should be ignored
* on POST requests, but we make an exception here (only for pagename).
*
* The justification for this hack is the following
* asymmetry: When POSTing with USE_PATH_INFO set, the
* pagename can (and should) be communicated through the
* request URL via PATH_INFO. When POSTing with
* USE_PATH_INFO off, this cannot be done --- the only way
* to communicate the pagename through the URL is via
* QUERY_ARGS (HTTP_GET_VARS).
*/
global $HTTP_GET_VARS;
if (isset($HTTP_GET_VARS['pagename']) and trim($HTTP_GET_VARS['pagename'])) {
return fixTitleEncoding(rawurldecode($HTTP_GET_VARS['pagename']));
}
}
/*
* Support for PhpWiki 1.2 style requests.
* Strip off "&" args (?PageName&action=...&start_debug,...)
*/
$query_string = $this->get('QUERY_STRING');
if (trim(rawurldecode($query_string)) and preg_match('/^([^&=]+)(&.+)?$/', $query_string, $m)) {
return fixTitleEncoding(rawurldecode($m[1]));
}
return fixTitleEncoding(HOME_PAGE);
}
function _deduceAction () {
if (!($action = $this->getArg('action'))) {
// TODO: improve this SOAP.php hack by letting SOAP use index.php
// or any other virtual url as with xmlrpc
if (defined('WIKI_SOAP') and WIKI_SOAP)
return 'soap';
// Detect XML-RPC requests.
if ($this->isPost()
&& $this->get('CONTENT_TYPE') == 'text/xml'
&& strstr($GLOBALS['HTTP_RAW_POST_DATA'], '<methodCall>')
)
{
return 'xmlrpc';
}
return 'browse'; // Default if no action specified.
}
if (method_exists($this, "action_$action"))
return $action;
// Allow for, e.g. action=LikePages
if ($this->isActionPage($action))
return $action;
// Handle untranslated actionpages in non-english
// (people playing with switching languages)
if (0 and $GLOBALS['LANG'] != 'en') {
require_once("lib/plugin/_WikiTranslation.php");
$trans = new WikiPlugin__WikiTranslation();
$en_action = $trans->translate($action,'en',$GLOBALS['LANG']);
if ($this->isActionPage($en_action))
return $en_action;
}
trigger_error("$action: Unknown action", E_USER_NOTICE);
return 'browse';
}
function _deduceUsername() {
global $HTTP_SERVER_VARS, $HTTP_ENV_VARS;
if (!empty($this->args['auth']) and !empty($this->args['auth']['userid']))
return $this->args['auth']['userid'];
if ($user = $this->getSessionVar('wiki_user')) {
// switched auth between sessions.
// Note: There's no way to demandload a missing class-definition
// afterwards! (Stupid php)
if (isa($user, WikiUserClassname())) {
$this->_user = $user;
$this->_user->_authhow = 'session';
return ENABLE_USER_NEW ? $user->UserName() : $this->_user;
}
}
// Sessions override http auth
if (!empty($HTTP_SERVER_VARS['PHP_AUTH_USER']))
return $HTTP_SERVER_VARS['PHP_AUTH_USER'];
// pubcookie et al
if (!empty($HTTP_SERVER_VARS['REMOTE_USER']))
return $HTTP_SERVER_VARS['REMOTE_USER'];
if (!empty($HTTP_ENV_VARS['REMOTE_USER']))
return $HTTP_ENV_VARS['REMOTE_USER'];
if ($userid = $this->getCookieVar(getCookieName())) {
if (!empty($userid) and substr($userid,0,2) != 's:') {
$this->_user->authhow = 'cookie';
return $userid;
}
}
if ($this->getArg('action') == 'xmlrpc') { // how about SOAP?
// wiki.putPage has special otional userid/passwd arguments. check that later.
$userid = '';
if (isset($HTTP_SERVER_VARS['REMOTE_USER']))
$userid = $HTTP_SERVER_VARS['REMOTE_USER'];
elseif (isset($HTTP_SERVER_VARS['REMOTE_ADDR']))
$userid = $HTTP_SERVER_VARS['REMOTE_ADDR'];
elseif (isset($HTTP_ENV_VARS['REMOTE_ADDR']))
$userid = $HTTP_ENV_VARS['REMOTE_ADDR'];
elseif (isset($GLOBALS['REMOTE_ADDR']))
$userid = $GLOBALS['REMOTE_ADDR'];
return $userid;
}
return false;
}
function _isActionPage ($pagename) {
$dbi = $this->getDbh();
$page = $dbi->getPage($pagename);
if (!$page) return false;
$rev = $page->getCurrentRevision();
// FIXME: more restrictive check for sane plugin?
if (strstr($rev->getPackedContent(), '<?plugin'))
return true;
if (!$rev->hasDefaultContents())
trigger_error("$pagename: Does not appear to be an 'action page'", E_USER_NOTICE);
return false;
}
function findActionPage ($action) {
static $cache;
// check for translated version, as per users preferred language
// (or system default in case it is not en)
$translation = gettext($action);
if (isset($cache) and isset($cache[$translation]))
return $cache[$translation];
// check for cached translated version
if ($this->_isActionPage($translation))
return $cache[$action] = $translation;
// Allow for, e.g. action=LikePages
if (!isWikiWord($action))
return $cache[$action] = false;
// check for translated version (default language)
global $LANG;
if ($LANG != "en") {
require_once("lib/WikiPlugin.php");
require_once("lib/plugin/_WikiTranslation.php");
$trans = new WikiPlugin__WikiTranslation();
$trans->lang = $LANG;
$default = $trans->translate_to_en($action, $LANG);
if ($this->_isActionPage($default))
return $cache[$action] = $default;
} else {
$default = $translation;
}
// check for english version
if ($action != $translation and $action != $default) {
if ($this->_isActionPage($action))
return $cache[$action] = $action;
}
trigger_error("$action: Cannot find action page", E_USER_NOTICE);
return $cache[$action] = false;
}
function isActionPage ($pagename) {
return $this->findActionPage($pagename);
}
function action_browse () {
$this->buffer_output();
include_once("lib/display.php");
displayPage($this);
}
function action_verify () {
$this->action_browse();
}
function actionpage ($action) {
$this->buffer_output();
include_once("lib/display.php");
actionPage($this, $action);
}
function adminActionSubpage ($subpage) {
$page = _("PhpWikiAdministration")."/".$subpage;
$action = $this->findActionPage($page);
if ($action) {
$this->setArg('s',$this->getArg('pagename'));
$this->setArg('verify',1);
$this->setArg('action',$action);
$this->actionpage($action);
} else {
trigger_error($page.": Cannot find action page", E_USER_WARNING);
}
}
function action_chown () {
$this->adminActionSubpage(_("Chown"));
}
function action_setacl () {
$this->adminActionSubpage(_("SetAcl"));
}
function action_rename () {
$this->adminActionSubpage(_("Rename"));
}
function action_dump () {
$action = $this->findActionPage(_("PageDump"));
if ($action) {
$this->actionpage($action);
} else {
// redirect to action=upgrade if admin?
trigger_error(_("PageDump").": Cannot find action page", E_USER_WARNING);
}
}
function action_diff () {
$this->buffer_output();
include_once "lib/diff.php";
showDiff($this);
}
function action_search () {
// This is obsolete: reformulate URL and redirect.
// FIXME: this whole section should probably be deleted.
if ($this->getArg('searchtype') == 'full') {
$search_page = _("FullTextSearch");
}
else {
$search_page = _("TitleSearch");
}
$this->redirect(WikiURL($search_page,
array('s' => $this->getArg('searchterm')),
'absolute_url'));
}
function action_edit () {
$this->buffer_output();
include "lib/editpage.php";
$e = new PageEditor ($this);
$e->editPage();
}
function action_create () {
$this->action_edit();
}
function action_viewsource () {
$this->buffer_output();
include "lib/editpage.php";
$e = new PageEditor ($this);
$e->viewSource();
}
function action_lock () {
$page = $this->getPage();
$page->set('locked', true);
$this->_dbi->touch();
// check ModeratedPage hook
if ($moderated = $page->get('moderated')) {
require_once("lib/WikiPlugin.php");
$plugin = WikiPluginLoader::getPlugin("ModeratedPage");
if ($retval = $plugin->lock_check($this, $page, $moderated))
$this->setArg('errormsg', $retval);
}
// check if a link to ModeratedPage exists
elseif ($action_page = $page->existLink(_("ModeratedPage"))) {
require_once("lib/WikiPlugin.php");
$plugin = WikiPluginLoader::getPlugin("ModeratedPage");
if ($retval = $plugin->lock_add($this, $page, $action_page))
$this->setArg('errormsg', $retval);
}
$this->action_browse();
}
function action_unlock () {
$page = $this->getPage();
$page->set('locked', false);
$this->_dbi->touch();
$this->action_browse();
}
function action_remove () {
// This check is now redundant.
//$user->requireAuth(WIKIAUTH_ADMIN);
$pagename = $this->getArg('pagename');
if (strstr($pagename, _("PhpWikiAdministration"))) {
$this->action_browse();
} else {
include('lib/removepage.php');
RemovePage($this);
}
}
function action_xmlrpc () {
include_once("lib/XmlRpcServer.php");
$xmlrpc = new XmlRpcServer($this);
$xmlrpc->service();
}
function action_revert () {
include_once "lib/loadsave.php";
RevertPage($this);
}
function action_zip () {
include_once("lib/loadsave.php");
MakeWikiZip($this);
// I don't think it hurts to add cruft at the end of the zip file.
//echo "\n========================================================\n";
//echo "PhpWiki " . PHPWIKI_VERSION . " source:\n$GLOBALS[RCS_IDS]\n";
}
function action_ziphtml () {
include_once("lib/loadsave.php");
MakeWikiZipHtml($this);
// I don't think it hurts to add cruft at the end of the zip file.
echo "\n========================================================\n";
echo "PhpWiki " . PHPWIKI_VERSION . " source:\n$GLOBALS[RCS_IDS]\n";
}
function action_dumpserial () {
include_once("lib/loadsave.php");
DumpToDir($this);
}
function action_dumphtml () {
include_once("lib/loadsave.php");
DumpHtmlToDir($this);
}
function action_upload () {
include_once("lib/loadsave.php");
LoadPostFile($this);
}
function action_upgrade () {
include_once("lib/loadsave.php");
include_once("lib/upgrade.php");
DoUpgrade($this);
}
function action_loadfile () {
include_once("lib/loadsave.php");
LoadFileOrDir($this);
}
function action_pdf () {
include_once("lib/pdf.php");
ConvertAndDisplayPdf($this);
}
function action_captcha () {
include_once "lib/Captcha.php";
$captcha = new Captcha();
$captcha->image ( $captcha->captchaword() );
}
}
//FIXME: deprecated with ENABLE_PAGEPERM (?)
function is_safe_action ($action) {
global $request;
return $request->requiredAuthorityForAction($action) < WIKIAUTH_ADMIN;
}
function validateSessionPath() {
// Try to defer any session.save_path PHP errors before any html
// is output, which causes some versions of IE to display a blank
// page (due to its strict mode while parsing a page?).
if (! is_writeable(ini_get('session.save_path'))) {
$tmpdir = (defined('SESSION_SAVE_PATH') and SESSION_SAVE_PATH) ? SESSION_SAVE_PATH : '/tmp';
if (!is_writeable($tmpdir))
$tmpdir = '/tmp';
trigger_error
(sprintf(_("%s is not writable."),
_("The session.save_path directory"))
. "\n"
. sprintf(_("Please ensure that %s is writable, or redefine %s in config/config.ini."),
sprintf(_("the session.save_path directory '%s'"),
ini_get('session.save_path')),
'SESSION_SAVE_PATH')
. "\n"
. sprintf(_("Attempting to use the directory '%s' instead."),
$tmpdir)
, E_USER_NOTICE);
if (! is_writeable($tmpdir)) {
trigger_error
(sprintf(_("%s is not writable."), $tmpdir)
. "\n"
. _("Users will not be able to sign in.")
, E_USER_NOTICE);
}
else
@ini_set('session.save_path', $tmpdir);
}
}
function main () {
if ( !USE_DB_SESSION )
validateSessionPath();
global $request;
if ((DEBUG & _DEBUG_APD) and extension_loaded("apd"))
apd_set_session_trace(9);
// Postpone warnings
global $ErrorManager;
if (defined('E_STRICT')) // and (E_ALL & E_STRICT)) // strict php5?
$ErrorManager->setPostponedErrorMask(E_NOTICE|E_USER_NOTICE|E_USER_WARNING|E_WARNING|E_STRICT);
else
$ErrorManager->setPostponedErrorMask(E_NOTICE|E_USER_NOTICE|E_USER_WARNING|E_WARNING);
$request = new WikiRequest();
$action = $request->getArg('action');
if (substr($action, 0, 3) != 'zip') {
if ($action == 'pdf')
$ErrorManager->setPostponedErrorMask(-1); // everything
//else // reject postponing of warnings
// $ErrorManager->setPostponedErrorMask(E_NOTICE|E_USER_NOTICE);
}
/*
* Allow for disabling of markup cache.
* (Mostly for debugging ... hopefully.)
*
* See also <?plugin WikiAdminUtils action=purge-cache ?>
*/
if (!defined('WIKIDB_NOCACHE_MARKUP')) {
if ($request->getArg('nocache')) // 1 or purge
define('WIKIDB_NOCACHE_MARKUP', $request->getArg('nocache'));
else
define('WIKIDB_NOCACHE_MARKUP', false); // redundant, but explicit
}
// Initialize with system defaults in case user not logged in.
// Should this go into constructor?
$request->initializeTheme();
$request->updateAuthAndPrefs();
$request->initializeLang();
//FIXME:
//if ($user->is_authenticated())
// $LogEntry->user = $user->getId();
// Memory optimization:
// http://www.procata.com/blog/archives/2004/05/27/rephlux-and-php-memory-usage/
// kill the global PEAR _PEAR_destructor_object_list
if (!empty($_PEAR_destructor_object_list))
$_PEAR_destructor_object_list = array();
$request->possiblyDeflowerVirginWiki();
// hack! define proper actions for these.
if (defined('WIKI_XMLRPC') and WIKI_XMLRPC) return;
if (defined('WIKI_SOAP') and WIKI_SOAP) return;
$validators = array('wikiname' => WIKI_NAME,
'args' => wikihash($request->getArgs()),
'prefs' => wikihash($request->getPrefs()));
if (CACHE_CONTROL == 'STRICT') {
$dbi = $request->getDbh();
$timestamp = $dbi->getTimestamp();
$validators['mtime'] = $timestamp;
$validators['%mtime'] = (int)$timestamp;
}
// FIXME: we should try to generate strong validators when possible,
// but for now, our validator is weak, since equal validators do not
// indicate byte-level equality of content. (Due to DEBUG timing output, etc...)
//
// (If DEBUG if off, this may be a strong validator, but I'm going
// to go the paranoid route here pending further study and testing.)
//
$validators['%weak'] = true;
$request->setValidators($validators);
$request->handleAction();
if (DEBUG and DEBUG & _DEBUG_INFO) phpinfo(INFO_VARIABLES | INFO_MODULES);
$request->finish();
}
//$x = error_reporting(); // DEBUG: why is it 1 here? should be E_ALL
if (defined('E_STRICT') and (E_ALL & E_STRICT)) // strict php5?
error_reporting(E_ALL & ~E_STRICT); // exclude E_STRICT
else
error_reporting(E_ALL); // php4
// don't run the main loop for special requests (test, getimg, xmlrpc, soap, ...)
if (!defined('PHPWIKI_NOMAIN') or !PHPWIKI_NOMAIN)
main();
// $Log: main.php,v $
// Revision 1.223 2006/03/19 15:01:00 rurban
// sf.net patch #1333957 by Matt Brown: Authentication cookie identical across all wikis on a host
//
// Revision 1.222 2006/03/19 14:53:12 rurban
// sf.net patch #1438392 by Matt Brown: Bogo Login is broken when ENABLE_PAGEPERM=false
//
// Revision 1.221 2006/03/19 14:23:51 rurban
// sf.net patch #1377011 by Matt Brown: add DATABASE_OPTIMISE_FREQUENCY
//
// Revision 1.220 2006/03/07 21:04:15 rurban
// wikihash for php-5.1
//
// Revision 1.219 2005/10/30 14:20:42 rurban
// move Captcha specific vars and methods into a Captcha object
// randomize Captcha chars positions and angles (smoothly)
//
// Revision 1.218 2005/10/29 14:18:06 rurban
// fix typo
//
// Revision 1.217 2005/09/18 12:44:00 rurban
// novatrope patch to let only _AUTHENTICATED view pages
//
// Revision 1.216 2005/08/27 09:40:46 rurban
// fix login with HttpAuth
//
// Revision 1.215 2005/08/07 10:50:27 rurban
// postpone guard
//
// Revision 1.214 2005/08/07 09:14:03 rurban
// fix cookie logout; let the WIKI_ID cookie get deleted
//
// Revision 1.213 2005/06/10 06:10:35 rurban
// ensure Update Preferences gets through
//
// Revision 1.212 2005/04/25 20:17:14 rurban
// captcha feature by Benjamin Drieu. Patch #1110699
//
// Revision 1.211 2005/04/11 19:42:54 rurban
// reformatting, SESSION_SAVE_PATH check
//
// Revision 1.210 2005/04/07 06:06:34 rurban
// add _SERVER[REMOTE_USER] check for pubcookie et al, Bug #1177259 (iamjpr)
//
// Revision 1.209 2005/04/06 06:19:30 rurban
// Revert the previous wrong bugfix #1175761: USECACHE was mixed with WIKIDB_NOCACHE_MARKUP.
// Fix WIKIDB_NOCACHE_MARKUP in main (always set it) and clarify it in WikiDB
//
// Revision 1.208 2005/02/28 21:24:32 rurban
// ignore forbidden ini_set warnings. Bug #1117254 by Xavier Roche
//
// Revision 1.207 2005/02/10 19:03:37 rurban
// try to avoid duoplicate lang/theme init
//
// Revision 1.206 2005/02/04 11:30:10 rurban
// remove old comments
//
// Revision 1.205 2005/01/29 20:41:47 rurban
// some minor php5 strictness fixes
//
// Revision 1.204 2005/01/25 07:35:42 rurban
// add TODO comment
//
// Revision 1.203 2005/01/21 14:11:23 rurban
// better moderation class tag
//
// Revision 1.202 2005/01/21 12:02:32 rurban
// deduce username for xmlrpc also
//
// Revision 1.201 2005/01/20 10:18:17 rurban
// reformatting
//
// Revision 1.200 2004/12/26 17:08:36 rurban
// php5 fixes: case-sensitivity, no & new
//
// Revision 1.199 2004/12/19 00:58:01 rurban
// Enforce PASSWORD_LENGTH_MINIMUM in almost all PassUser checks,
// Provide an errormessage if so. Just PersonalPage and BogoLogin not.
// Simplify httpauth logout handling and set sessions for all methods.
// fix main.php unknown index "x" getLevelDescription() warning.
//
// Revision 1.198 2004/12/17 16:49:51 rurban
// avoid Invalid username message on Sign In button click
//
// Revision 1.197 2004/12/17 16:39:55 rurban
// enable sessions for HttpAuth
//
// Revision 1.196 2004/12/10 02:36:43 rurban
// More help with the new native xmlrpc lib. no warnings, no user cookie on xmlrpc.
//
// Revision 1.195 2004/12/09 22:24:44 rurban
// optimize on _DEBUG_SQL only. but now again on every 50th request, not just save.
//
// Revision 1.194 2004/11/30 17:46:49 rurban
// added ModeratedPage POST action hook (part 2/3)
//
// Revision 1.193 2004/11/30 07:51:08 rurban
// fixed SESSION_SAVE_PATH warning msg
//
// Revision 1.192 2004/11/21 11:59:20 rurban
// remove final \n to be ob_cache independent
//
// Revision 1.191 2004/11/19 19:22:03 rurban
// ModeratePage part1: change status
//
// Revision 1.190 2004/11/15 15:56:40 rurban
// don't load PagePerm on ENABLE_PAGEPERM = false to save memory. Move mayAccessPage() to main.php
//
// Revision 1.189 2004/11/09 17:11:16 rurban
// * revert to the wikidb ref passing. there's no memory abuse there.
// * use new wikidb->_cache->_id_cache[] instead of wikidb->_iwpcache, to effectively
// store page ids with getPageLinks (GleanDescription) of all existing pages, which
// are also needed at the rendering for linkExistingWikiWord().
// pass options to pageiterator.
// use this cache also for _get_pageid()
// This saves about 8 SELECT count per page (num all pagelinks).
// * fix passing of all page fields to the pageiterator.
// * fix overlarge session data which got broken with the latest ACCESS_LOG_SQL changes
//
// Revision 1.188 2004/11/07 16:02:52 rurban
// new sql access log (for spam prevention), and restructured access log class
// dbh->quote (generic)
// pear_db: mysql specific parts seperated (using replace)
//
// Revision 1.187 2004/11/05 22:08:52 rurban
// Ok: Fix loading all required userclasses beforehand. This is much slower than before but safes a few bytes RAM
//
// Revision 1.186 2004/11/05 20:53:35 rurban
// login cleanup: better debug msg on failing login,
// checked password less immediate login (bogo or anon),
// checked olduser pref session error,
// better PersonalPage without password warning on minimal password length=0
// (which is default now)
//
// Revision 1.185 2004/11/01 13:55:05 rurban
// fix against switching user new/old between sessions
//
// Revision 1.184 2004/11/01 10:43:57 rurban
// seperate PassUser methods into seperate dir (memory usage)
// fix WikiUser (old) overlarge data session
// remove wikidb arg from various page class methods, use global ->_dbi instead
// ...
//
// Revision 1.183 2004/10/14 19:23:58 rurban
// remove debugging prints
//
// Revision 1.182 2004/10/12 13:13:19 rurban
// php5 compatibility (5.0.1 ok)
//
// Revision 1.181 2004/10/07 16:08:58 rurban
// fixed broken FileUser session handling.
// thanks to Arnaud Fontaine for detecting this.
// enable file user Administrator membership.
//
// Revision 1.180 2004/10/04 23:39:34 rurban
// just aesthetics
//
// Revision 1.179 2004/09/25 18:57:42 rurban
// better ACL error message: view not browse, change not setacl, ...
//
// Revision 1.178 2004/09/25 16:27:36 rurban
// better not allowed description: on global disallowed, and on missing pageperms
//
// Revision 1.177 2004/09/14 10:31:09 rurban
// exclude E_STRICT for php5: untested. I believe this must be set earlier because the parsing step is already strict, and this is called at run-time
//
// Revision 1.176 2004/08/05 17:33:22 rurban
// aesthetic typo
//
// Revision 1.175 2004/07/13 13:08:25 rurban
// fix PEAR memory waste issues
//
// Revision 1.174 2004/07/08 13:50:32 rurban
// various unit test fixes: print error backtrace on _DEBUG_TRACE; allusers fix; new PHPWIKI_NOMAIN constant for omitting the mainloop
//
// Revision 1.173 2004/07/05 12:57:54 rurban
// add mysql timeout
//
// Revision 1.172 2004/07/03 08:04:19 rurban
// fixed implicit PersonalPage login (e.g. on edit), fixed to check against create ACL on create, not edit
//
// Revision 1.171 2004/06/29 09:30:42 rurban
// force string hash
//
// Revision 1.170 2004/06/25 14:29:20 rurban
// WikiGroup refactoring:
// global group attached to user, code for not_current user.
// improved helpers for special groups (avoid double invocations)
// new experimental config option ENABLE_XHTML_XML (fails with IE, and document.write())
// fixed a XHTML validation error on userprefs.tmpl
//
// Revision 1.169 2004/06/20 14:42:54 rurban
// various php5 fixes (still broken at blockparser)
//
// Revision 1.168 2004/06/17 10:39:18 rurban
// fix reverse translation of possible actionpage
//
// Revision 1.167 2004/06/16 13:21:16 rurban
// stabilize on failing ldap queries or bind
//
// Revision 1.166 2004/06/15 09:15:52 rurban
// IMPORTANT: fixed passwd handling for passwords stored in prefs:
// fix encrypted usage, actually store and retrieve them from db
// fix bogologin with passwd set.
// fix php crashes with call-time pass-by-reference (references wrongly used
// in declaration AND call). This affected mainly Apache2 and IIS.
// (Thanks to John Cole to detect this!)
//
// Revision 1.165 2004/06/14 11:31:37 rurban
// renamed global $Theme to $WikiTheme (gforge nameclash)
// inherit PageList default options from PageList
// default sortby=pagename
// use options in PageList_Selectable (limit, sortby, ...)
// added action revert, with button at action=diff
// added option regex to WikiAdminSearchReplace
//
// Revision 1.164 2004/06/13 13:54:25 rurban
// Catch fatals on the four dump calls (as file and zip, as html and mimified)
// FoafViewer: Check against external requirements, instead of fatal.
// Change output for xhtmldumps: using file:// urls to the local fs.
// Catch SOAP fatal by checking for GOOGLE_LICENSE_KEY
// Import GOOGLE_LICENSE_KEY and FORTUNE_DIR from config.ini.
//
// Revision 1.163 2004/06/13 11:35:32 rurban
// check for create action on action=edit not to fool PagePerm checks
//
// Revision 1.162 2004/06/08 10:05:11 rurban
// simplified admin action shortcuts
//
// Revision 1.161 2004/06/07 22:58:40 rurban
// simplified chown, setacl, dump actions
//
// Revision 1.160 2004/06/07 22:44:14 rurban
// added simplified chown, setacl actions
//
// Revision 1.159 2004/06/06 16:58:51 rurban
// added more required ActionPages for foreign languages
// install now english ActionPages if no localized are found. (again)
// fixed default anon user level to be 0, instead of -1
// (wrong "required administrator to view this page"...)
//
// Revision 1.158 2004/06/04 20:32:53 rurban
// Several locale related improvements suggested by Pierrick Meignen
// LDAP fix by John Cole
// reanable admin check without ENABLE_PAGEPERM in the admin plugins
//
// Revision 1.157 2004/06/04 12:40:21 rurban
// Restrict valid usernames to prevent from attacks against external auth or compromise
// possible holes.
// Fix various WikiUser old issues with default IMAP,LDAP,POP3 configs. Removed these.
// Fxied more warnings
//
// Revision 1.156 2004/06/03 17:58:16 rurban
// support immediate LANG and THEME switch inside a session
//
// Revision 1.155 2004/06/03 10:18:19 rurban
// fix FileUser locking issues, new config ENABLE_PAGEPERM
//
// Revision 1.154 2004/06/02 18:01:46 rurban
// init global FileFinder to add proper include paths at startup
// adds PHPWIKI_DIR if started from another dir, lib/pear also
// fix slashify for Windows
// fix USER_AUTH_POLICY=old, use only USER_AUTH_ORDER methods (besides HttpAuth)
//
// Revision 1.153 2004/06/01 15:28:00 rurban
// AdminUser only ADMIN_USER not member of Administrators
// some RateIt improvements by dfrankow
// edit_toolbar buttons
//
// Revision 1.152 2004/05/27 17:49:06 rurban
// renamed DB_Session to DbSession (in CVS also)
// added WikiDB->getParam and WikiDB->getAuthParam method to get rid of globals
// remove leading slash in error message
// added force_unlock parameter to File_Passwd (no return on stale locks)
// fixed adodb session AffectedRows
// added FileFinder helpers to unify local filenames and DATA_PATH names
// editpage.php: new edit toolbar javascript on ENABLE_EDIT_TOOLBAR
//
// Revision 1.151 2004/05/25 12:40:48 rurban
// trim the pagename
//
// Revision 1.150 2004/05/25 10:18:44 rurban
// Check for UTF-8 URLs; Internet Explorer produces these if you
// type non-ASCII chars in the URL bar or follow unescaped links.
// Fixes sf.net bug #953949
// src: languages/Language.php:checkTitleEncoding() from mediawiki
//
// Revision 1.149 2004/05/18 13:31:19 rurban
// hold warnings until headers are sent. new Error-style with collapsed output of repeated messages
//
// Revision 1.148 2004/05/17 17:43:29 rurban
// CGI: no PATH_INFO fix
//
// Revision 1.147 2004/05/15 19:48:33 rurban
// fix some too loose PagePerms for signed, but not authenticated users
// (admin, owner, creator)
// no double login page header, better login msg.
// moved action_pdf to lib/pdf.php
//
// Revision 1.146 2004/05/15 18:31:01 rurban
// some action=pdf Request fixes: With MSIE it works now. Now the work with the page formatting begins.
//
// Revision 1.145 2004/05/12 10:49:55 rurban
// require_once fix for those libs which are loaded before FileFinder and
// its automatic include_path fix, and where require_once doesn't grok
// dirname(__FILE__) != './lib'
// upgrade fix with PearDB
// navbar.tmpl: remove spaces for IE button alignment
//
// Revision 1.144 2004/05/06 19:26:16 rurban
// improve stability, trying to find the InlineParser endless loop on sf.net
//
// remove end-of-zip comments to fix sf.net bug #777278 and probably #859628
//
// Revision 1.143 2004/05/06 17:30:38 rurban
// CategoryGroup: oops, dos2unix eol
// improved phpwiki_version:
// pre -= .0001 (1.3.10pre: 1030.099)
// -p1 += .001 (1.3.9-p1: 1030.091)
// improved InstallTable for mysql and generic SQL versions and all newer tables so far.
// abstracted more ADODB/PearDB methods for action=upgrade stuff:
// backend->backendType(), backend->database(),
// backend->listOfFields(),
// backend->listOfTables(),
//
// Revision 1.142 2004/05/04 22:34:25 rurban
// more pdf support
//
// Revision 1.141 2004/05/03 13:16:47 rurban
// fixed UserPreferences update, esp for boolean and int
//
// Revision 1.140 2004/05/02 21:26:38 rurban
// limit user session data (HomePageHandle and auth_dbi have to invalidated anyway)
// because they will not survive db sessions, if too large.
// extended action=upgrade
// some WikiTranslation button work
// revert WIKIAUTH_UNOBTAINABLE (need it for main.php)
// some temp. session debug statements
//
// Revision 1.139 2004/05/02 15:10:07 rurban
// new finally reliable way to detect if /index.php is called directly
// and if to include lib/main.php
// new global AllActionPages
// SetupWiki now loads all mandatory pages: HOME_PAGE, action pages, and warns if not.
// WikiTranslation what=buttons for Carsten to create the missing MacOSX buttons
// PageGroupTestOne => subpages
// renamed PhpWikiRss to PhpWikiRecentChanges
// more docs, default configs, ...
//
// Revision 1.138 2004/05/01 15:59:29 rurban
// more php-4.0.6 compatibility: superglobals
//
// Revision 1.137 2004/04/29 19:39:44 rurban
// special support for formatted plugins (one-liners)
// like <small><plugin BlaBla ></small>
// iter->asArray() helper for PopularNearby
// db_session for older php's (no &func() allowed)
//
// Revision 1.136 2004/04/29 17:18:19 zorloc
// Fixes permission failure issues. With PagePermissions and Disabled
// Actions when user did not have permission WIKIAUTH_FORBIDDEN was
// returned. In WikiUser this was ok because WIKIAUTH_FORBIDDEN had a
// value of 11 -- thus no user could perform that action. But
// WikiUserNew has a WIKIAUTH_FORBIDDEN value of -1 -- thus a user
// without sufficent permission to do anything. The solution is a new
// high value permission level (WIKIAUTH_UNOBTAINABLE) to be the
// default level for access failure.
//
// Revision 1.135 2004/04/26 12:15:01 rurban
// check default config values
//
// Revision 1.134 2004/04/23 06:46:37 zorloc
// Leave DB connection open when USE_DB_SESSION is true so that session info can be written to the DB.
//
// Revision 1.133 2004/04/20 18:10:31 rurban
// config refactoring:
// FileFinder is needed for WikiFarm scripts calling index.php
// config run-time calls moved to lib/IniConfig.php:fix_configs()
// added PHPWIKI_DIR smart-detection code (Theme finder)
// moved FileFind to lib/FileFinder.php
// cleaned lib/config.php
//
// Revision 1.132 2004/04/19 21:51:41 rurban
// php5 compatibility: it works!
//
// Revision 1.131 2004/04/19 18:27:45 rurban
// Prevent from some PHP5 warnings (ref args, no :: object init)
// php5 runs now through, just one wrong XmlElement object init missing
// Removed unneccesary UpgradeUser lines
// Changed WikiLink to omit version if current (RecentChanges)
//
// Revision 1.130 2004/04/18 00:25:53 rurban
// allow "0" pagename
//
// Revision 1.129 2004/04/07 23:13:19 rurban
// fixed pear/File_Passwd for Windows
// fixed FilePassUser sessions (filehandle revive) and password update
//
// Revision 1.128 2004/04/02 15:06:55 rurban
// fixed a nasty ADODB_mysql session update bug
// improved UserPreferences layout (tabled hints)
// fixed UserPreferences auth handling
// improved auth stability
// improved old cookie handling: fixed deletion of old cookies with paths
//
// Revision 1.127 2004/03/25 17:00:31 rurban
// more code to convert old-style pref array to new hash
//
// Revision 1.126 2004/03/24 19:39:03 rurban
// php5 workaround code (plus some interim debugging code in XmlElement)
// php5 doesn't work yet with the current XmlElement class constructors,
// WikiUserNew does work better than php4.
// rewrote WikiUserNew user upgrading to ease php5 update
// fixed pref handling in WikiUserNew
// added Email Notification
// added simple Email verification
// removed emailVerify userpref subclass: just a email property
// changed pref binary storage layout: numarray => hash of non default values
// print optimize message only if really done.
// forced new cookie policy: delete pref cookies, use only WIKI_ID as plain string.
// prefs should be stored in db or homepage, besides the current session.
//
// Revision 1.125 2004/03/14 16:30:52 rurban
// db-handle session revivification, dba fixes
//
// Revision 1.124 2004/03/12 15:48:07 rurban
// fixed explodePageList: wrong sortby argument order in UnfoldSubpages
// simplified lib/stdlib.php:explodePageList
//
// Revision 1.123 2004/03/10 15:41:27 rurban
// use default pref mysql table
//
// Revision 1.122 2004/03/08 18:17:09 rurban
// added more WikiGroup::getMembersOf methods, esp. for special groups
// fixed $LDAP_SET_OPTIONS
// fixed _AuthInfo group methods
//
// Revision 1.121 2004/03/01 13:48:45 rurban
// rename fix
// p[] consistency fix
//
// Revision 1.120 2004/03/01 10:22:41 rurban
// initializeTheme optimize
//
// Revision 1.119 2004/02/26 20:45:06 rurban
// check for ALLOW_ANON_USER = false
//
// Revision 1.118 2004/02/26 01:32:03 rurban
// fixed session login with old WikiUser object.
// strangely, the errormask gets corrupted to 1, Pear???
//
// Revision 1.117 2004/02/24 17:19:37 rurban
// debugging helpers only
//
// Revision 1.116 2004/02/24 15:17:14 rurban
// improved auth errors with individual pages. the fact that you may
// not browse a certain admin page does not conclude that you may not
// browse the whole wiki. renamed browse => view
//
// Revision 1.115 2004/02/15 21:34:37 rurban
// PageList enhanced and improved.
// fixed new WikiAdmin... plugins
// editpage, Theme with exp. htmlarea framework
// (htmlarea yet committed, this is really questionable)
// WikiUser... code with better session handling for prefs
// enhanced UserPreferences (again)
// RecentChanges for show_deleted: how should pages be deleted then?
//
// Revision 1.114 2004/02/15 17:30:13 rurban
// workaround for lost db connnection handle on session restauration (->_auth_dbi)
// fixed getPreferences() (esp. from sessions)
// fixed setPreferences() (update and set),
// fixed AdoDb DB statements,
// update prefs only at UserPreferences POST (for testing)
// unified db prefs methods (but in external pref classes yet)
//
// Revision 1.113 2004/02/12 13:05:49 rurban
// Rename functional for PearDB backend
// some other minor changes
// SiteMap comes with a not yet functional feature request: includepages (tbd)
//
// Revision 1.112 2004/02/09 03:58:12 rurban
// for now default DB_SESSION to false
// PagePerm:
// * not existing perms will now query the parent, and not
// return the default perm
// * added pagePermissions func which returns the object per page
// * added getAccessDescription
// WikiUserNew:
// * added global ->prepare (not yet used) with smart user/pref/member table prefixing.
// * force init of authdbh in the 2 db classes
// main:
// * fixed session handling (not triple auth request anymore)
// * don't store cookie prefs with sessions
// stdlib: global obj2hash helper from _AuthInfo, also needed for PagePerm
//
// Revision 1.111 2004/02/07 10:41:25 rurban
// fixed auth from session (still double code but works)
// fixed GroupDB
// fixed DbPassUser upgrade and policy=old
// added GroupLdap
//
// Revision 1.110 2004/02/03 09:45:39 rurban
// LDAP cleanup, start of new Pref classes
//
// Revision 1.109 2004/01/30 19:57:58 rurban
// fixed DBAuthParams['pref_select']: wrong _auth_dbi object used.
//
// Revision 1.108 2004/01/28 14:34:14 rurban
// session table takes the common prefix
// + various minor stuff
// reallow password changing
//
// Revision 1.107 2004/01/27 23:23:39 rurban
// renamed ->Username => _userid for consistency
// renamed mayCheckPassword => mayCheckPass
// fixed recursion problem in WikiUserNew
// fixed bogo login (but not quite 100% ready yet, password storage)
//
// Revision 1.106 2004/01/26 09:17:49 rurban
// * changed stored pref representation as before.
// the array of objects is 1) bigger and 2)
// less portable. If we would import packed pref
// objects and the object definition was changed, PHP would fail.
// This doesn't happen with an simple array of non-default values.
// * use $prefs->retrieve and $prefs->store methods, where retrieve
// understands the interim format of array of objects also.
// * simplified $prefs->get() and fixed $prefs->set()
// * added $user->_userid and class '_WikiUser' portability functions
// * fixed $user object ->_level upgrading, mostly using sessions.
// this fixes yesterdays problems with loosing authorization level.
// * fixed WikiUserNew::checkPass to return the _level
// * fixed WikiUserNew::isSignedIn
// * added explodePageList to class PageList, support sortby arg
// * fixed UserPreferences for WikiUserNew
// * fixed WikiPlugin for empty defaults array
// * UnfoldSubpages: added pagename arg, renamed pages arg,
// removed sort arg, support sortby arg
//
// Revision 1.105 2004/01/25 03:57:15 rurban
// WikiUserNew support (temp. ENABLE_USER_NEW constant)
//
// Revision 1.104 2003/12/26 06:41:16 carstenklapp
// Bugfix: Try to defer OS errors about session.save_path and ACCESS_LOG,
// so they don't prevent IE from partially (or not at all) rendering the
// page. This should help a little for the IE user who encounters trouble
// when setting up a new PhpWiki for the first time.
//
// Revision 1.103 2003/12/02 00:10:00 carstenklapp
// Bugfix: Ongoing work to untangle UserPreferences/WikiUser/request code
// mess: UserPreferences should take effect immediately now upon signing
// in.
//
// Revision 1.102 2003/11/25 22:55:32 carstenklapp
// Localization bugfix: For wikis where English is not the default system
// language, make sure that the authority error message (i.e. "You must
// sign in to edit pages in this wiki" etc.) is displayed in the wiki's
// default language. Previously it would always display in English.
// (Added call to update_locale() before displaying any messages prior to
// the login prompt.)
//
// Revision 1.101 2003/11/25 21:49:44 carstenklapp
// Bugfix: For a non-english wiki or when the user's preference is not
// english, the wiki would always use the english ActionPage first if it
// was present rather than the appropriate localised variant. (PhpWikis
// running only in english or Wikis running ONLY without any english
// ActionPages would not notice this bug, only when both english and
// localised ActionPages were in the DB.) Now we check for the localised
// variant first.
//
// Revision 1.100 2003/11/18 16:54:18 carstenklapp
// Reformatting only: Tabs to spaces, added rcs log.
//
// Local Variables:
// mode: php
// tab-width: 8
// c-basic-offset: 4
// c-hanging-comment-ender-p: nil
// indent-tabs-mode: nil
// End:
?>
|