Skip to content
Snippets Groups Projects
Commit 444b87a5 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

mor conservative chunksize for wordblock patternsize

darcs-hash:20060218232226-7ad00-2835d47a97fb12a04055b8145de26c8406f78a99.gz
parent c5a8fd96
No related branches found
No related tags found
No related merge requests found
...@@ -126,10 +126,10 @@ function buildAttributes($params){ ...@@ -126,10 +126,10 @@ function buildAttributes($params){
/** /**
* print a message * print a message
* *
* If HTTP headers were not sent yet the message is added * If HTTP headers were not sent yet the message is added
* to the global message array else it's printed directly * to the global message array else it's printed directly
* using html_msgarea() * using html_msgarea()
* *
* *
* Levels can be: * Levels can be:
* *
...@@ -174,7 +174,7 @@ function breadcrumbs(){ ...@@ -174,7 +174,7 @@ function breadcrumbs(){
global $ACT; global $ACT;
global $conf; global $conf;
$crumbs = $_SESSION[$conf['title']]['bc']; $crumbs = $_SESSION[$conf['title']]['bc'];
//first visit? //first visit?
if (!is_array($crumbs)){ if (!is_array($crumbs)){
$crumbs = array(); $crumbs = array();
...@@ -272,7 +272,7 @@ function wl($id='',$more='',$abs=false,$sep='&'){ ...@@ -272,7 +272,7 @@ function wl($id='',$more='',$abs=false,$sep='&'){
$xlink .= DOKU_SCRIPT.'?id='.$id; $xlink .= DOKU_SCRIPT.'?id='.$id;
if($more) $xlink .= $sep.$more; if($more) $xlink .= $sep.$more;
} }
return $xlink; return $xlink;
} }
...@@ -301,7 +301,7 @@ function ml($id='',$more='',$direct=true,$sep='&'){ ...@@ -301,7 +301,7 @@ function ml($id='',$more='',$direct=true,$sep='&'){
$xlink .= '?media='.rawurlencode($id); $xlink .= '?media='.rawurlencode($id);
} }
return $xlink; return $xlink;
} }
$id = idfilter($id); $id = idfilter($id);
...@@ -371,11 +371,11 @@ function checkwordblock(){ ...@@ -371,11 +371,11 @@ function checkwordblock(){
//old versions of PCRE define a maximum of parenthesises even if no //old versions of PCRE define a maximum of parenthesises even if no
//backreferences are used - the maximum is 99 //backreferences are used - the maximum is 99
//this is very bad performancewise and may even be too high still //this is very bad performancewise and may even be too high still
$chunksize = 40; $chunksize = 40;
}else{ }else{
//read file in chunks of 600 - this should work around the //read file in chunks of 600 - this should work around the
//MAX_PATTERN_SIZE in modern PCRE //MAX_PATTERN_SIZE in modern PCRE
$chunksize = 600; $chunksize = 400;
} }
while($blocks = array_splice($wordblocks,0,$chunksize)){ while($blocks = array_splice($wordblocks,0,$chunksize)){
$re = array(); $re = array();
...@@ -387,8 +387,8 @@ function checkwordblock(){ ...@@ -387,8 +387,8 @@ function checkwordblock(){
$re[] = $block; $re[] = $block;
} }
if(preg_match('#('.join('|',$re).')#si',$TEXT, $match=array())) { if(preg_match('#('.join('|',$re).')#si',$TEXT, $match=array())) {
return true; return true;
} }
} }
return false; return false;
} }
...@@ -418,22 +418,22 @@ function clientIP(){ ...@@ -418,22 +418,22 @@ function clientIP(){
function checklock($id){ function checklock($id){
global $conf; global $conf;
$lock = wikiFN($id).'.lock'; $lock = wikiFN($id).'.lock';
//no lockfile //no lockfile
if(!@file_exists($lock)) return false; if(!@file_exists($lock)) return false;
//lockfile expired //lockfile expired
if((time() - filemtime($lock)) > $conf['locktime']){ if((time() - filemtime($lock)) > $conf['locktime']){
unlink($lock); unlink($lock);
return false; return false;
} }
//my own lock //my own lock
$ip = io_readFile($lock); $ip = io_readFile($lock);
if( ($ip == clientIP()) || ($ip == $_SERVER['REMOTE_USER']) ){ if( ($ip == clientIP()) || ($ip == $_SERVER['REMOTE_USER']) ){
return false; return false;
} }
return $ip; return $ip;
} }
...@@ -483,7 +483,7 @@ function cleanText($text){ ...@@ -483,7 +483,7 @@ function cleanText($text){
/** /**
* Prepares text for print in Webforms by encoding special chars. * Prepares text for print in Webforms by encoding special chars.
* It also converts line endings to Windows format which is * It also converts line endings to Windows format which is
* pseudo standard for webforms. * pseudo standard for webforms.
* *
* @see cleanText() for 2unix conversion * @see cleanText() for 2unix conversion
* @author Andreas Gohr <andi@splitbrain.org> * @author Andreas Gohr <andi@splitbrain.org>
...@@ -645,7 +645,7 @@ function _handleRecent($line,$ns,$flags){ ...@@ -645,7 +645,7 @@ function _handleRecent($line,$ns,$flags){
// split the line into parts // split the line into parts
list($dt,$ip,$id,$usr,$sum) = explode("\t",$line); list($dt,$ip,$id,$usr,$sum) = explode("\t",$line);
// skip seen ones // skip seen ones
if($seen[$id]) return false; if($seen[$id]) return false;
$recent = array(); $recent = array();
...@@ -736,7 +736,7 @@ function getRecents($first,$num,$ns='',$flags=0){ ...@@ -736,7 +736,7 @@ function getRecents($first,$num,$ns='',$flags=0){
while($pos > 0){ while($pos > 0){
$pos -= $csz; // seek to previous chunk... $pos -= $csz; // seek to previous chunk...
if($pos < 0) { // ...or rest of file if($pos < 0) { // ...or rest of file
$csz += $pos; $csz += $pos;
$pos = 0; $pos = 0;
} }
...@@ -842,7 +842,7 @@ function saveWikiText($id,$text,$summary,$minor=false){ ...@@ -842,7 +842,7 @@ function saveWikiText($id,$text,$summary,$minor=false){
// send notify mails // send notify mails
notify($id,'admin',$old,$summary,$minor); notify($id,'admin',$old,$summary,$minor);
notify($id,'subscribers',$old,$summary,$minor); notify($id,'subscribers',$old,$summary,$minor);
//purge cache on add by updating the purgefile //purge cache on add by updating the purgefile
if($conf['purgeonadd'] && (!$old || $del)){ if($conf['purgeonadd'] && (!$old || $del)){
io_saveFile($conf['cachedir'].'/purgefile',time()); io_saveFile($conf['cachedir'].'/purgefile',time());
...@@ -856,7 +856,7 @@ function saveWikiText($id,$text,$summary,$minor=false){ ...@@ -856,7 +856,7 @@ function saveWikiText($id,$text,$summary,$minor=false){
* @author Andreas Gohr <andi@splitbrain.org> * @author Andreas Gohr <andi@splitbrain.org>
*/ */
function saveOldRevision($id){ function saveOldRevision($id){
global $conf; global $conf;
umask($conf['umask']); umask($conf['umask']);
$oldf = wikiFN($id); $oldf = wikiFN($id);
if(!@file_exists($oldf)) return ''; if(!@file_exists($oldf)) return '';
...@@ -902,7 +902,7 @@ function notify($id,$who,$rev='',$summary='',$minor=false){ ...@@ -902,7 +902,7 @@ function notify($id,$who,$rev='',$summary='',$minor=false){
}else{ }else{
return; //just to be safe return; //just to be safe
} }
$text = str_replace('@DATE@',date($conf['dformat']),$text); $text = str_replace('@DATE@',date($conf['dformat']),$text);
$text = str_replace('@BROWSER@',$_SERVER['HTTP_USER_AGENT'],$text); $text = str_replace('@BROWSER@',$_SERVER['HTTP_USER_AGENT'],$text);
$text = str_replace('@IPADDRESS@',$_SERVER['REMOTE_ADDR'],$text); $text = str_replace('@IPADDRESS@',$_SERVER['REMOTE_ADDR'],$text);
...@@ -913,7 +913,7 @@ function notify($id,$who,$rev='',$summary='',$minor=false){ ...@@ -913,7 +913,7 @@ function notify($id,$who,$rev='',$summary='',$minor=false){
$text = str_replace('@DOKUWIKIURL@',DOKU_URL,$text); $text = str_replace('@DOKUWIKIURL@',DOKU_URL,$text);
$text = str_replace('@SUMMARY@',$summary,$text); $text = str_replace('@SUMMARY@',$summary,$text);
$text = str_replace('@USER@',$_SERVER['REMOTE_USER'],$text); $text = str_replace('@USER@',$_SERVER['REMOTE_USER'],$text);
if($rev){ if($rev){
$subject = $lang['mail_changed'].' '.$id; $subject = $lang['mail_changed'].' '.$id;
$text = str_replace('@OLDPAGE@',wl($id,"rev=$rev",true),$text); $text = str_replace('@OLDPAGE@',wl($id,"rev=$rev",true),$text);
...@@ -1009,7 +1009,7 @@ function filesize_h($size, $dec = 1){ ...@@ -1009,7 +1009,7 @@ function filesize_h($size, $dec = 1){
$sizes = array('B', 'KB', 'MB', 'GB'); $sizes = array('B', 'KB', 'MB', 'GB');
$count = count($sizes); $count = count($sizes);
$i = 0; $i = 0;
while ($size >= 1024 && ($i < $count - 1)) { while ($size >= 1024 && ($i < $count - 1)) {
$size /= 1024; $size /= 1024;
$i++; $i++;
...@@ -1026,21 +1026,21 @@ function filesize_h($size, $dec = 1){ ...@@ -1026,21 +1026,21 @@ function filesize_h($size, $dec = 1){
*/ */
function obfuscate($email) { function obfuscate($email) {
global $conf; global $conf;
switch ($conf['mailguard']) { switch ($conf['mailguard']) {
case 'visible' : case 'visible' :
$obfuscate = array('@' => ' [at] ', '.' => ' [dot] ', '-' => ' [dash] '); $obfuscate = array('@' => ' [at] ', '.' => ' [dot] ', '-' => ' [dash] ');
return strtr($email, $obfuscate); return strtr($email, $obfuscate);
case 'hex' : case 'hex' :
$encode = ''; $encode = '';
for ($x=0; $x < strlen($email); $x++) $encode .= '&#x' . bin2hex($email{$x}).';'; for ($x=0; $x < strlen($email); $x++) $encode .= '&#x' . bin2hex($email{$x}).';';
return $encode; return $encode;
case 'none' : case 'none' :
default : default :
return $email; return $email;
} }
} }
/** /**
...@@ -1135,7 +1135,7 @@ function check(){ ...@@ -1135,7 +1135,7 @@ function check(){
}else{ }else{
msg('Debugging support is disabled',1); msg('Debugging support is disabled',1);
} }
msg('Your current permission for this page is '.$INFO['perm'],0); msg('Your current permission for this page is '.$INFO['perm'],0);
if(is_writable($INFO['filepath'])){ if(is_writable($INFO['filepath'])){
...@@ -1175,10 +1175,10 @@ function is_subscribed($id,$uid){ ...@@ -1175,10 +1175,10 @@ function is_subscribed($id,$uid){
*/ */
function subscriber_addresslist($id){ function subscriber_addresslist($id){
global $conf; global $conf;
global $auth; global $auth;
$emails = ''; $emails = '';
if (!$conf['subscribers']) return; if (!$conf['subscribers']) return;
$mlist = array(); $mlist = array();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment