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
|
<?php // -*-php-*-
rcs_id('$Id: file.php,v 1.25 2007/02/17 21:49:13 rurban Exp $');
/**
Copyright 1999, 2000, 2001, 2002, 2003 $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
*/
/**
* Backend for handling file storage.
*
* Author: Jochen Kalmbach, Jochen@kalmbachnet.de
*/
/*
* TODO:
* - Implement "optimize" / "sync" / "check" / "rebuild"
* - Optimize "get_previous_version"
* - Optimize "get_links" (reversed = true)
* - Optimize "get_all_revisions"
* - Optimize "most_popular" (separate file for "hitcount",
* which contains all pages)
* - Optimize "most_recent"
* - What should be done in "lock"/"unlock"/"close" ?
* - "WikiDB_backend_file_iter": Do I need to return 'version' and 'versiondata' ?
*
*/
require_once('lib/WikiDB/backend.php');
require_once('lib/ErrorManager.php');
class WikiDB_backend_file
extends WikiDB_backend
{
var $data_dir;
var $_dir_names;
var $_page_data; // temporarily stores the pagedata (via _loadPageData)
var $_page_version_data; // temporarily stores the versiondata (via _loadVersionData)
var $_latest_versions; // temporarily stores the latest version-numbers (for every pagename)
function WikiDB_backend_file( $dbparam )
{
$this->data_dir = $dbparam['directory'];
if (file_exists($this->data_dir) and is_file($this->data_dir))
unlink($this->data_dir);
if (is_dir($this->data_dir) == false) {
mkdir($this->data_dir, 0755);
}
$this->_dir_names
= array('ver_data' => $this->data_dir.'/'.'ver_data',
'page_data' => $this->data_dir.'/'.'page_data',
'latest_ver' => $this->data_dir.'/'.'latest_ver',
'links' => $this->data_dir.'/'.'links' );
foreach ($this->_dir_names as $key => $val) {
if (file_exists($val) and is_file($val))
unlink($val);
if (is_dir($val) == false)
mkdir($val, 0755);
}
$this->_page_data = NULL;
$this->_page_version_data = NULL;
$this->_latest_versions = NULL;
}
// *********************************************************************
// common file load / save functions:
function _pagename2filename($type, $pagename, $version) {
if ($version == 0)
return $this->_dir_names[$type].'/'.urlencode($pagename);
else
return $this->_dir_names[$type].'/'.urlencode($pagename).'--'.$version;
}
function _loadPage($type, $pagename, $version, $set_pagename = true) {
$filename = $this->_pagename2filename($type, $pagename, $version);
if (!file_exists($filename)) return NULL;
if (!filesize($filename)) return array();
if ($fd = @fopen($filename, "rb")) {
$locked = flock($fd, 1); # Read lock
if (!$locked) {
ExitWiki("Timeout while obtaining lock. Please try again");
}
if ($data = fread($fd, filesize($filename))) {
$pd = unserialize($data);
if ($set_pagename == true)
$pd['pagename'] = $pagename;
if ($version != 0)
$pd['version'] = $version;
if (!is_array($pd))
ExitWiki(sprintf(gettext("'%s': corrupt file"),
htmlspecialchars($filename)));
else
return $pd;
}
fclose($fd);
}
return NULL;
}
function _savePage($type, $pagename, $version, $data) {
$filename = $this->_pagename2filename($type, $pagename, $version);
if($fd = fopen($filename, 'a+b')) {
$locked = flock($fd,2); // Exclusive blocking lock
if (!$locked) {
ExitWiki("Timeout while obtaining lock. Please try again");
}
rewind($fd);
ftruncate($fd, 0);
$pagedata = serialize($data);
$len = strlen($pagedata);
$num = fwrite($fd, $pagedata, $len);
assert($num == $len);
fclose($fd);
} else {
ExitWiki("Error while writing page '$pagename'");
}
}
function _removePage($type, $pagename, $version) {
$filename = $this->_pagename2filename($type, $pagename, $version);
if (!file_exists($filename)) return NULL;
$f = @unlink($filename);
if ($f == false)
trigger_error("delete file failed: ".$filename." ver: ".$version, E_USER_WARNING);
}
// *********************************************************************
// *********************************************************************
// Load/Save Version-Data
function _loadVersionData($pagename, $version) {
if ($this->_page_version_data != NULL) {
if ( ($this->_page_version_data['pagename'] == $pagename) &&
($this->_page_version_data['version'] == $version) ) {
return $this->_page_version_data;
}
}
$vd = $this->_loadPage('ver_data', $pagename, $version);
if ($vd != NULL) {
$this->_page_version_data = $vd;
if ( ($this->_page_version_data['pagename'] == $pagename) &&
($this->_page_version_data['version'] == $version) ) {
return $this->_page_version_data;
}
}
return NULL;
}
function _saveVersionData($pagename, $version, $data) {
$this->_savePage('ver_data', $pagename, $version, $data);
// check if this is a newer version:
if ($this->_getLatestVersion($pagename) < $version) {
// write new latest-version-info
$this->_setLatestVersion($pagename, $version);
}
}
// *********************************************************************
// Load/Save Page-Data
function _loadPageData($pagename) {
if ($this->_page_data != NULL) {
if ($this->_page_data['pagename'] == $pagename) {
return $this->_page_data;
}
}
$pd = $this->_loadPage('page_data', $pagename, 0);
if ($pd != NULL)
$this->_page_data = $pd;
if ($this->_page_data != NULL) {
if ($this->_page_data['pagename'] == $pagename) {
return $this->_page_data;
}
}
return array(); // no values found
}
function _savePageData($pagename, $data) {
$this->_savePage('page_data', $pagename, 0, $data);
}
// *********************************************************************
// Load/Save Latest-Version
function _saveLatestVersions() {
$data = $this->_latest_versions;
if ($data == NULL)
$data = array();
$this->_savePage('latest_ver', 'latest_versions', 0, $data);
}
function _setLatestVersion($pagename, $version) {
// make sure the page version list is loaded:
$this->_getLatestVersion($pagename);
if ($version > 0) {
$this->_getLatestVersion($pagename);
$this->_latest_versions[$pagename] = $version;
}
else {
// Remove this page from the Latest-Version-List:
unset($this->_latest_versions[$pagename]);
}
$this->_saveLatestVersions();
}
function _loadLatestVersions() {
if ($this->_latest_versions != NULL)
return;
$pd = $this->_loadPage('latest_ver', 'latest_versions', 0, false);
if ($pd != NULL)
$this->_latest_versions = $pd;
else
$this->_latest_versions = array(); // empty array
}
function _getLatestVersion($pagename) {
$this->_loadLatestVersions();
if (array_key_exists($pagename, $this->_latest_versions) == false)
return 0; // do version exists
return $this->_latest_versions[$pagename];
}
// *********************************************************************
// Load/Save Page-Links
function _loadPageLinks($pagename) {
$pd = $this->_loadPage('links', $pagename, 0, false);
if ($pd != NULL)
return $pd;;
return array(); // no values found
}
function _savePageLinks($pagename, $links) {
$this->_savePage('links', $pagename, 0, $links);
}
/**
* Get page meta-data from database.
*
* @param $pagename string Page name.
* @return hash
* Returns a hash containing the page meta-data.
* Returns an empty array if there is no meta-data for the requested page.
* Keys which might be present in the hash are:
* <dl>
* <dt> locked <dd> If the page is locked.
* <dt> hits <dd> The page hit count.
* <dt> created <dd> Unix time of page creation. (FIXME: Deprecated: I
* don't think we need this...)
* </dl>
*/
function get_pagedata($pagename) {
return $this->_loadPageData($pagename);
}
/**
* Update the page meta-data.
*
* Set page meta-data.
*
* Only meta-data whose keys are preset in $newdata is affected.
*
* For example:
* <pre>
* $backend->update_pagedata($pagename, array('locked' => 1));
* </pre>
* will set the value of 'locked' to 1 for the specified page, but it
* will not affect the value of 'hits' (or whatever other meta-data
* may have been stored for the page.)
*
* To delete a particular piece of meta-data, set it's value to false.
* <pre>
* $backend->update_pagedata($pagename, array('locked' => false));
* </pre>
*
* @param $pagename string Page name.
* @param $newdata hash New meta-data.
*/
/**
* This will create a new page if page being requested does not
* exist.
*/
function update_pagedata($pagename, $newdata) {
$data = $this->get_pagedata($pagename);
if (count($data) == 0) {
$this->_savePageData($pagename, $newdata); // create a new pagedata-file
return;
}
foreach ($newdata as $key => $val) {
if (empty($val))
unset($data[$key]);
else
$data[$key] = $val;
}
$this->_savePageData($pagename, $data); // write new pagedata-file
}
/**
* Get the current version number for a page.
*
* @param $pagename string Page name.
* @return int The latest version number for the page. Returns zero if
* no versions of a page exist.
*/
function get_latest_version($pagename) {
return $this->_getLatestVersion($pagename);
}
/**
* Get preceding version number.
*
* @param $pagename string Page name.
* @param $version int Find version before this one.
* @return int The version number of the version in the database which
* immediately preceeds $version.
*
* FIXED: Check if this version really exists!
*/
function get_previous_version($pagename, $version) {
$prev = ($version > 0 ? $version - 1 : 0);
while ($prev and !file_exists($this->_pagename2filename('ver_data', $pagename, $prev))) {
$prev--;
}
return $prev;
}
/**
* Get revision meta-data and content.
*
* @param $pagename string Page name.
* @param $version integer Which version to get.
* @param $want_content boolean
* Indicates the caller really wants the page content. If this
* flag is not set, the backend is free to skip fetching of the
* page content (as that may be expensive). If the backend omits
* the content, the backend might still want to set the value of
* '%content' to the empty string if it knows there's no content.
*
* @return hash The version data, or false if specified version does not
* exist.
*
* Some keys which might be present in the $versiondata hash are:
* <dl>
* <dt> %content
* <dd> This is a pseudo-meta-data element (since it's actually
* the page data, get it?) containing the page content.
* If the content was not fetched, this key may not be present.
* </dl>
* For description of other version meta-data see WikiDB_PageRevision::get().
* @see WikiDB_PageRevision::get
*/
function get_versiondata($pagename, $version, $want_content = false) {
$vd = $this->_loadVersionData($pagename, $version);
if ($vd == NULL)
return false;
return $vd;
}
/**
* Rename all files for this page
*
* @access protected Via WikiDB
*/
function rename_page($pagename, $to) {
$version = _getLatestVersion($pagename);
foreach ($this->_dir_names as $type => $path) {
if (is_dir($path)) {
$filename = $this->_pagename2filename($type, $pagename, $version);
$new = $this->_pagename2filename($type, $to, $version);
@rename($filename,$new);
}
}
$this->update_pagedata($pagename, array('pagename' => $to));
return true;
}
/**
* See ADODB for a better delete_page(), which can be undone and is seen in RecentChanges.
*/
function delete_page($pagename) {
$this->purge_page($pagename);
}
/**
* Delete page from the database.
*
* Delete page (and all it's revisions) from the database.
*
* @param $pagename string Page name.
*/
function purge_page($pagename) {
$ver = $this->get_latest_version($pagename);
while ($ver > 0) {
$this->_removePage('ver_data', $pagename, $ver);
$ver = $this->get_previous_version($pagename, $ver);
}
$this->_removePage('page_data', $pagename, 0);
$this->_removePage('links', $pagename, 0);
// remove page from latest_version...
$this->_setLatestVersion($pagename, 0);
}
/**
* Delete an old revision of a page.
*
* Note that one is never allowed to delete the most recent version,
* but that this requirement is enforced by WikiDB not by the backend.
*
* In fact, to be safe, backends should probably allow the deletion of
* the most recent version.
*
* @param $pagename string Page name.
* @param $version integer Version to delete.
*/
function delete_versiondata($pagename, $version) {
if ($this->get_latest_version($pagename) == $version) {
// try to delete the latest version!
// so check if an older version exist:
if ($this->get_versiondata($pagename,
$this->get_previous_version($pagename, $version),
false) == false) {
// there is no older version....
// so the completely page will be removed:
$this->delete_page($pagename);
return;
}
}
$this->_removePage('ver_data', $pagename, $version);
}
/**
* Create a new page revision.
*
* If the given ($pagename,$version) is already in the database,
* this method completely overwrites any stored data for that version.
*
* @param $pagename string Page name.
* @param $version int New revisions content.
* @param $data hash New revision metadata.
*
* @see get_versiondata
*/
function set_versiondata($pagename, $version, $data) {
$this->_saveVersionData($pagename, $version, $data);
}
/**
* Update page version meta-data.
*
* If the given ($pagename,$version) is already in the database,
* this method only changes those meta-data values whose keys are
* explicity listed in $newdata.
*
* @param $pagename string Page name.
* @param $version int New revisions content.
* @param $newdata hash New revision metadata.
* @see set_versiondata, get_versiondata
*/
function update_versiondata($pagename, $version, $newdata) {
$data = $this->get_versiondata($pagename, $version, true);
if (!$data) {
assert($data);
return;
}
foreach ($newdata as $key => $val) {
if (empty($val))
unset($data[$key]);
else
$data[$key] = $val;
}
$this->set_versiondata($pagename, $version, $data);
}
/**
* Set links for page.
*
* @param $pagename string Page name.
*
* @param $links array List of page(names) which page links to.
*/
function set_links($pagename, $links) {
$this->_savePageLinks($pagename, $links);
}
/**
* Find pages which link to or are linked from a page.
*
* @param $pagename string Page name.
* @param $reversed boolean True to get backlinks.
*
* FIXME: array or iterator?
* @return object A WikiDB_backend_iterator.
*/
function get_links($pagename, $reversed=true, $include_empty=false,
$sortby='', $limit='', $exclude='',
$want_relations=false)
{
if ($reversed == false)
return new WikiDB_backend_file_iter($this, $this->_loadPageLinks($pagename));
$this->_loadLatestVersions();
$pagenames = $this->_latest_versions; // now we have an array with the key is the pagename of all pages
$out = array(); // create empty out array
foreach ($pagenames as $key => $val) {
$links = $this->_loadPageLinks($key);
foreach ($links as $key2 => $val2) {
if ($val2['linkto'] == $pagename)
array_push($out, $key);
}
}
return new WikiDB_backend_file_iter($this, $out);
}
/**
* Get all revisions of a page.
*
* @param $pagename string The page name.
* @return object A WikiDB_backend_iterator.
*/
/*
function get_all_revisions($pagename) {
include_once('lib/WikiDB/backend/dumb/AllRevisionsIter.php');
return new WikiDB_backend_dumb_AllRevisionsIter($this, $pagename);
}
*/
/**
* Get all pages in the database.
*
* Pages should be returned in alphabetical order if that is
* feasable.
*
* @access protected
*
* @param $include_defaulted boolean
* If set, even pages with no content will be returned
* --- but still only if they have at least one revision (not
* counting the default revision 0) entered in the database.
*
* Normally pages whose current revision has empty content
* are not returned as these pages are considered to be
* non-existing.
*
* @return object A WikiDB_backend_iterator.
*/
function get_all_pages($include_empty=false, $sortby='', $limit='', $exclude='') {
require_once("lib/PageList.php");
$this->_loadLatestVersions();
$a = array_keys($this->_latest_versions);
if (empty($a))
return new WikiDB_backend_file_iter($this, $a);
$sortby = $this->sortby($sortby, 'db', $this->sortable_columns());
switch ($sortby) {
case '': break;
case 'pagename ASC': sort($a); break;
case 'pagename DESC': rsort($a); break;
}
return new WikiDB_backend_file_iter($this, $a);
}
function sortable_columns() {
return array('pagename');
}
function numPages($filter=false, $exclude='') {
$this->_loadLatestVersions();
return count($this->_latest_versions);
}
/**
* Lock backend database.
*
* Calls may be nested.
*
* @param $write_lock boolean Unless this is set to false, a write lock
* is acquired, otherwise a read lock. If the backend doesn't support
* read locking, then it should make a write lock no matter which type
* of lock was requested.
*
* All backends <em>should</em> support write locking.
*/
function lock($write_lock = true) {
//trigger_error("lock: Not Implemented", E_USER_WARNING);
}
/**
* Unlock backend database.
*
* @param $force boolean Normally, the database is not unlocked until
* unlock() is called as many times as lock() has been. If $force is
* set to true, the the database is unconditionally unlocked.
*/
function unlock($force = false) {
//trigger_error("unlock: Not Implemented", E_USER_WARNING);
}
/**
* Close database.
*/
function close () {
//trigger_error("close: Not Implemented", E_USER_WARNING);
}
/**
* Synchronize with filesystem.
*
* This should flush all unwritten data to the filesystem.
*/
function sync() {
//trigger_error("sync: Not Implemented", E_USER_WARNING);
}
/**
* Optimize the database.
*/
function optimize() {
return 0;//trigger_error("optimize: Not Implemented", E_USER_WARNING);
}
/**
* Check database integrity.
*
* This should check the validity of the internal structure of the database.
* Errors should be reported via:
* <pre>
* trigger_error("Message goes here.", E_USER_WARNING);
* </pre>
*
* @return boolean True iff database is in a consistent state.
*/
function check() {
//trigger_error("check: Not Implemented", E_USER_WARNING);
}
/**
* Put the database into a consistent state.
*
* This should put the database into a consistent state.
* (I.e. rebuild indexes, etc...)
*
* @return boolean True iff successful.
*/
function rebuild() {
//trigger_error("rebuild: Not Implemented", E_USER_WARNING);
}
function _parse_searchwords($search) {
$search = strtolower(trim($search));
if (!$search)
return array(array(),array());
$words = preg_split('/\s+/', $search);
$exclude = array();
foreach ($words as $key => $word) {
if ($word[0] == '-' && $word != '-') {
$word = substr($word, 1);
$exclude[] = preg_quote($word);
unset($words[$key]);
}
}
return array($words, $exclude);
}
};
class WikiDB_backend_file_iter extends WikiDB_backend_iterator
{
function WikiDB_backend_file_iter(&$backend, &$query_result) {
$this->_backend = &$backend;
$this->_result = $query_result;
if (count($this->_result) > 0)
reset($this->_result);
}
function next() {
if (!$this->_result)
return false;
if (count($this->_result) <= 0)
return false;
$e = each($this->_result);
if ($e == false) {
return false;
}
$pn = $e[1];
if (is_array($pn) and isset($pn['linkto'])) { // support relation link iterator
$pn = $pn['linkto'];
}
$pagedata = $this->_backend->get_pagedata($pn);
// don't pass _cached_html via iterators
if (isset($pagedata['_cached_html']))
unset($pagedata['_cached_html']);
unset($pagedata['pagename']);
$rec = array('pagename' => $pn,
'pagedata' => $pagedata);
if (is_array($e[1])) {
$rec['linkrelation'] = $e[1]['relation'];
}
//$rec['version'] = $backend->get_latest_version($pn);
//$rec['versiondata'] = $backend->get_versiondata($pn, $rec['version'], true);
return $rec;
}
function asArray() {
reset($this->_result);
return $this->_result;
}
function count() {
return count($this->_result);
}
function free () {
$this->_result = array();
}
}
// $Log: file.php,v $
// Revision 1.25 2007/02/17 21:49:13 rurban
// fix Backlinks: Patch 1660462 by Erwann Penet. Thanks for the prvious rev change to Erwann Penet too.
//
// Revision 1.24 2007/02/17 20:24:56 rurban
// fix getLinks for relation and linkto
//
// Revision 1.23 2007/01/04 16:45:49 rurban
// Clarify API: sortby,limit and exclude are strings.
//
// Revision 1.22 2004/12/06 19:50:04 rurban
// enable action=remove which is undoable and seeable in RecentChanges: ADODB ony for now.
// renamed delete_page to purge_page.
// enable action=edit&version=-1 to force creation of a new version.
// added BABYCART_PATH config
// fixed magiqc in adodb.inc.php
// and some more docs
//
// Revision 1.21 2004/11/25 17:20:52 rurban
// and again a couple of more native db args: backlinks
//
// Revision 1.20 2004/11/23 13:35:49 rurban
// add case_exact search
//
// Revision 1.19 2004/11/21 11:59:26 rurban
// remove final \n to be ob_cache independent
//
// Revision 1.18 2004/11/09 17:11:17 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.17 2004/07/09 13:05:34 rurban
// just aesthetics
//
// Revision 1.16 2004/07/09 12:47:45 rurban
// dont cache _ cached_html and pagename in flatfile page iterators
//
// Revision 1.15 2004/07/09 10:06:50 rurban
// Use backend specific sortby and sortable_columns method, to be able to
// select between native (Db backend) and custom (PageList) sorting.
// Fixed PageList::AddPageList (missed the first)
// Added the author/creator.. name to AllPagesBy...
// display no pages if none matched.
// Improved dba and file sortby().
// Use &$request reference
//
// Revision 1.14 2004/07/08 17:31:43 rurban
// improve numPages for file (fixing AllPagesTest)
//
// Revision 1.13 2004/07/08 15:23:59 rurban
// less verbose for tests
//
// Revision 1.12 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.11 2004/07/08 11:12:49 rurban
// quiet the testruns
//
// Revision 1.10 2004/06/03 22:08:17 rurban
// fix bug #963268 (check existing previous version)
//
// Revision 1.9 2004/04/27 16:03:05 rurban
// missing pageiter::count methods
//
// Revision 1.8 2004/03/01 13:48:45 rurban
// rename fix
// p[] consistency fix
//
// Revision 1.7 2004/02/12 14:11:36 rurban
// more rename_page backend methods: only tested for PearDB! please help
//
// Revision 1.6 2004/01/26 09:17:51 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.5 2004/01/25 08:17:29 rurban
// ORDER BY support for all other backends,
// all non-SQL simply ignoring it, using plain old dumb_iter instead
//
// Revision 1.4 2003/02/24 01:53:28 dairiki
// Bug fix. Don't need to urldecode pagenames in WikiDB_backend_file_iter.
//
// Revision 1.3 2003/01/04 03:41:51 wainstead
// Added copyleft flowerboxes
//
// Revision 1.2 2003/01/04 03:30:34 wainstead
// added log tag, converted file to unix format
//
// For emacs users
// Local Variables:
// mode: php
// tab-width: 8
// c-basic-offset: 4
// c-hanging-comment-ender-p: nil
// indent-tabs-mode: nil
// End:
?>
|