178a6aeb1SAndreas Gohr<?php 278a6aeb1SAndreas Gohr/** 378a6aeb1SAndreas Gohr * DokuWiki JavaScript creator 478a6aeb1SAndreas Gohr * 578a6aeb1SAndreas Gohr * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 678a6aeb1SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 778a6aeb1SAndreas Gohr */ 878a6aeb1SAndreas Gohr 9d0a27cb0SAndreas Gohrif(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../'); 101c2d1019SAndreas Gohrif(!defined('NOSESSION')) define('NOSESSION',true); // we do not use a session or authentication here (better caching) 11b1a4fe22SAndreas Gohrif(!defined('NL')) define('NL',"\n"); 1298bda4fdSAndreas Gohrif(!defined('DOKU_DISABLE_GZIP_OUTPUT')) define('DOKU_DISABLE_GZIP_OUTPUT',1); // we gzip ourself here 1378a6aeb1SAndreas Gohrrequire_once(DOKU_INC.'inc/init.php'); 1478a6aeb1SAndreas Gohrrequire_once(DOKU_INC.'inc/pageutils.php'); 15758447cfSAndreas Gohrrequire_once(DOKU_INC.'inc/httputils.php'); 1678a6aeb1SAndreas Gohrrequire_once(DOKU_INC.'inc/io.php'); 173df72098SAndreas Gohrrequire_once(DOKU_INC.'inc/JSON.php'); 1878a6aeb1SAndreas Gohr 1978a6aeb1SAndreas Gohr// Main (don't run when UNIT test) 2078a6aeb1SAndreas Gohrif(!defined('SIMPLE_TEST')){ 2178a6aeb1SAndreas Gohr header('Content-Type: text/javascript; charset=utf-8'); 2278a6aeb1SAndreas Gohr js_out(); 2378a6aeb1SAndreas Gohr} 2478a6aeb1SAndreas Gohr 2578a6aeb1SAndreas Gohr 2678a6aeb1SAndreas Gohr// ---------------------- functions ------------------------------ 2778a6aeb1SAndreas Gohr 2878a6aeb1SAndreas Gohr/** 2978a6aeb1SAndreas Gohr * Output all needed JavaScript 3078a6aeb1SAndreas Gohr * 3178a6aeb1SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 3278a6aeb1SAndreas Gohr */ 3378a6aeb1SAndreas Gohrfunction js_out(){ 3478a6aeb1SAndreas Gohr global $conf; 3578a6aeb1SAndreas Gohr global $lang; 3678a6aeb1SAndreas Gohr 3778a6aeb1SAndreas Gohr // The generated script depends on some dynamic options 386392c3b6SAndreas Gohr $cache = getCacheName('scripts'.$_SERVER['HTTP_HOST'].$_SERVER['SERVER_PORT'],'.js'); 3978a6aeb1SAndreas Gohr 406392c3b6SAndreas Gohr // array of core files 4178a6aeb1SAndreas Gohr $files = array( 4286045fe9Swingedfox DOKU_INC.'lib/scripts/helpers.js', 4378a6aeb1SAndreas Gohr DOKU_INC.'lib/scripts/events.js', 443df72098SAndreas Gohr DOKU_INC.'lib/scripts/cookie.js', 4578a6aeb1SAndreas Gohr DOKU_INC.'lib/scripts/script.js', 4678a6aeb1SAndreas Gohr DOKU_INC.'lib/scripts/tw-sack.js', 4778a6aeb1SAndreas Gohr DOKU_INC.'lib/scripts/ajax.js', 48a06884abSAndreas Gohr DOKU_INC.'lib/scripts/index.js', 49050f4a94SAndreas Gohr DOKU_INC.'lib/scripts/drag.js', 506392c3b6SAndreas Gohr DOKU_INC.'lib/scripts/textselection.js', 516392c3b6SAndreas Gohr DOKU_INC.'lib/scripts/toolbar.js', 526392c3b6SAndreas Gohr DOKU_INC.'lib/scripts/edit.js', 536392c3b6SAndreas Gohr DOKU_INC.'lib/scripts/linkwiz.js', 546392c3b6SAndreas Gohr DOKU_INC.'lib/scripts/media.js', 556392c3b6SAndreas Gohr DOKU_TPLINC.'script.js', 5678a6aeb1SAndreas Gohr ); 5778a6aeb1SAndreas Gohr 586392c3b6SAndreas Gohr // add possible plugin scripts and userscript 596392c3b6SAndreas Gohr $files = array_merge($files,js_pluginscripts()); 606392c3b6SAndreas Gohr $files[] = DOKU_CONF.'userscript.js'; 6178a6aeb1SAndreas Gohr 6238f56bffSBen Coburn // check cache age & handle conditional request 6307525e80SBen Coburn header('Cache-Control: public, max-age=3600'); 6438f56bffSBen Coburn header('Pragma: public'); 656392c3b6SAndreas Gohr if(js_cacheok($cache,$files)){ 6638f56bffSBen Coburn http_conditionalRequest(filemtime($cache)); 67cf6894dfSAndreas Gohr if($conf['allowdebug']) header("X-CacheUsed: $cache"); 68ca2b464bSChris Smith 69ca2b464bSChris Smith // finally send output 7098bda4fdSAndreas Gohr if ($conf['gzip_output'] && http_gzip_valid($cache)) { 71ca2b464bSChris Smith header('Vary: Accept-Encoding'); 72ca2b464bSChris Smith header('Content-Encoding: gzip'); 7398bda4fdSAndreas Gohr readfile($cache.".gz"); 74ca2b464bSChris Smith } else { 75ca2b464bSChris Smith if (!http_sendfile($cache)) readfile($cache); 76ca2b464bSChris Smith } 7778a6aeb1SAndreas Gohr return; 7838f56bffSBen Coburn } else { 7938f56bffSBen Coburn http_conditionalRequest(time()); 8078a6aeb1SAndreas Gohr } 8178a6aeb1SAndreas Gohr 8278a6aeb1SAndreas Gohr // start output buffering and build the script 8378a6aeb1SAndreas Gohr ob_start(); 8478a6aeb1SAndreas Gohr 853df72098SAndreas Gohr // add some global variables 863df72098SAndreas Gohr print "var DOKU_BASE = '".DOKU_BASE."';"; 874804a7daSMichael Klier print "var DOKU_TPL = '".DOKU_TPL."';"; 88*d9e6a3cbSAndreas Gohr print "var DOKU_UHN = ".((int) useHeading('navigation')).";"; 89*d9e6a3cbSAndreas Gohr print "var DOKU_UHC = ".((int) useHeading('content')).";"; 903df72098SAndreas Gohr 913df72098SAndreas Gohr // load JS specific translations 923df72098SAndreas Gohr $json = new JSON(); 936392c3b6SAndreas Gohr $lang['js']['plugins'] = js_pluginstrings(); 943df72098SAndreas Gohr echo 'LANG = '.$json->encode($lang['js']).";\n"; 9578a6aeb1SAndreas Gohr 966392c3b6SAndreas Gohr // load toolbar 976392c3b6SAndreas Gohr require_once(DOKU_INC.'inc/toolbar.php'); 986392c3b6SAndreas Gohr toolbar_JSdefines('toolbar'); 996392c3b6SAndreas Gohr 10078a6aeb1SAndreas Gohr // load files 10178a6aeb1SAndreas Gohr foreach($files as $file){ 10257d846dbSAndreas Gohr echo "\n\n/* XXXXXXXXXX begin of ".str_replace(DOKU_INC, '', $file) ." XXXXXXXXXX */\n\n"; 103176da19bSAndreas Gohr js_load($file); 10457d846dbSAndreas Gohr echo "\n\n/* XXXXXXXXXX end of " . str_replace(DOKU_INC, '', $file) . " XXXXXXXXXX */\n\n"; 10578a6aeb1SAndreas Gohr } 10678a6aeb1SAndreas Gohr 1076392c3b6SAndreas Gohr 10878a6aeb1SAndreas Gohr // init stuff 10924a33b42SAndreas Gohr js_runonstart("ajax_qsearch.init('qsearch__in','qsearch__out')"); 11078a6aeb1SAndreas Gohr js_runonstart("addEvent(document,'click',closePopups)"); 11100540a38SAndreas Gohr js_runonstart('addTocToggle()'); 11224a33b42SAndreas Gohr js_runonstart("initSizeCtl('size__ctl','wiki__text')"); 11324a33b42SAndreas Gohr js_runonstart("initToolbar('tool__bar','wiki__text',toolbar)"); 11478a6aeb1SAndreas Gohr js_runonstart("initChangeCheck('".js_escape($lang['notsavedyet'])."')"); 115ee4c4a1bSAndreas Gohr js_runonstart("locktimer.init(".($conf['locktime'] - 60).",'".js_escape($lang['willexpire'])."',".$conf['usedraft'].")"); 11650835be7SAndreas Gohr js_runonstart('scrollToMarker()'); 1178d975344SAndreas Gohr js_runonstart('focusMarker()'); 11800540a38SAndreas Gohr 11978a6aeb1SAndreas Gohr // end output buffering and get contents 12078a6aeb1SAndreas Gohr $js = ob_get_contents(); 12178a6aeb1SAndreas Gohr ob_end_clean(); 12278a6aeb1SAndreas Gohr 12378a6aeb1SAndreas Gohr // compress whitespace and comments 12478a6aeb1SAndreas Gohr if($conf['compress']){ 12578a6aeb1SAndreas Gohr $js = js_compress($js); 12678a6aeb1SAndreas Gohr } 12778a6aeb1SAndreas Gohr 1284d2d451eSAndreas Gohr $js .= "\n"; // https://bugzilla.mozilla.org/show_bug.cgi?id=316033 1294d2d451eSAndreas Gohr 13078a6aeb1SAndreas Gohr // save cache file 13178a6aeb1SAndreas Gohr io_saveFile($cache,$js); 132c8317406SAndreas Gohr if(function_exists('gzopen')) io_saveFile("$cache.gz",$js); 13378a6aeb1SAndreas Gohr 13478a6aeb1SAndreas Gohr // finally send output 13598bda4fdSAndreas Gohr if ($conf['gzip_output']) { 136ca2b464bSChris Smith header('Vary: Accept-Encoding'); 137ca2b464bSChris Smith header('Content-Encoding: gzip'); 138ca2b464bSChris Smith print gzencode($js,9,FORCE_GZIP); 139ca2b464bSChris Smith } else { 14078a6aeb1SAndreas Gohr print $js; 14178a6aeb1SAndreas Gohr } 142ca2b464bSChris Smith} 14378a6aeb1SAndreas Gohr 14478a6aeb1SAndreas Gohr/** 145176da19bSAndreas Gohr * Load the given file, handle include calls and print it 1463825ddd3SAndreas Gohr * 1473825ddd3SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 148176da19bSAndreas Gohr */ 149176da19bSAndreas Gohrfunction js_load($file){ 150176da19bSAndreas Gohr if(!@file_exists($file)) return; 1513825ddd3SAndreas Gohr static $loaded = array(); 152176da19bSAndreas Gohr 153176da19bSAndreas Gohr $data = io_readFile($file); 154640a9478STom N Harris while(preg_match('#/\*\s*DOKUWIKI:include(_once)?\s+([\w\./]+)\s*\*/#',$data,$match)){ 1553825ddd3SAndreas Gohr $ifile = $match[2]; 1563825ddd3SAndreas Gohr 1573825ddd3SAndreas Gohr // is it a include_once? 1583825ddd3SAndreas Gohr if($match[1]){ 1593825ddd3SAndreas Gohr $base = basename($ifile); 1603825ddd3SAndreas Gohr if($loaded[$base]) continue; 1613825ddd3SAndreas Gohr $loaded[$base] = true; 1623825ddd3SAndreas Gohr } 1633825ddd3SAndreas Gohr 164176da19bSAndreas Gohr if($ifile{0} != '/') $ifile = dirname($file).'/'.$ifile; 165176da19bSAndreas Gohr 166176da19bSAndreas Gohr if(@file_exists($ifile)){ 167176da19bSAndreas Gohr $idata = io_readFile($ifile); 168176da19bSAndreas Gohr }else{ 169176da19bSAndreas Gohr $idata = ''; 170176da19bSAndreas Gohr } 171176da19bSAndreas Gohr $data = str_replace($match[0],$idata,$data); 172176da19bSAndreas Gohr } 173176da19bSAndreas Gohr echo $data; 174176da19bSAndreas Gohr} 175176da19bSAndreas Gohr 176176da19bSAndreas Gohr/** 17778a6aeb1SAndreas Gohr * Checks if a JavaScript Cache file still is valid 17878a6aeb1SAndreas Gohr * 17978a6aeb1SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 18078a6aeb1SAndreas Gohr */ 18178a6aeb1SAndreas Gohrfunction js_cacheok($cache,$files){ 1820df6f150SAndreas Gohr if($_REQUEST['purge']) return false; //support purge request 1830df6f150SAndreas Gohr 18478a6aeb1SAndreas Gohr $ctime = @filemtime($cache); 18578a6aeb1SAndreas Gohr if(!$ctime) return false; //There is no cache 18678a6aeb1SAndreas Gohr 18778a6aeb1SAndreas Gohr // some additional files to check 188f8121585SChris Smith $files = array_merge($files, getConfigFiles('main')); 18978a6aeb1SAndreas Gohr $files[] = DOKU_CONF.'userscript.js'; 19078a6aeb1SAndreas Gohr $files[] = __FILE__; 19178a6aeb1SAndreas Gohr 19278a6aeb1SAndreas Gohr // now walk the files 19378a6aeb1SAndreas Gohr foreach($files as $file){ 19478a6aeb1SAndreas Gohr if(@filemtime($file) > $ctime){ 19578a6aeb1SAndreas Gohr return false; 19678a6aeb1SAndreas Gohr } 19778a6aeb1SAndreas Gohr } 19878a6aeb1SAndreas Gohr return true; 19978a6aeb1SAndreas Gohr} 20078a6aeb1SAndreas Gohr 20178a6aeb1SAndreas Gohr/** 20278a6aeb1SAndreas Gohr * Returns a list of possible Plugin Scripts (no existance check here) 20378a6aeb1SAndreas Gohr * 20478a6aeb1SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 20578a6aeb1SAndreas Gohr */ 20678a6aeb1SAndreas Gohrfunction js_pluginscripts(){ 20778a6aeb1SAndreas Gohr $list = array(); 20878a6aeb1SAndreas Gohr $plugins = plugin_list(); 20978a6aeb1SAndreas Gohr foreach ($plugins as $p){ 21078a6aeb1SAndreas Gohr $list[] = DOKU_PLUGIN."$p/script.js"; 21178a6aeb1SAndreas Gohr } 21278a6aeb1SAndreas Gohr return $list; 21378a6aeb1SAndreas Gohr} 21478a6aeb1SAndreas Gohr 21578a6aeb1SAndreas Gohr/** 2169f01cf6aSGabriel Birke * Return an two-dimensional array with strings from the language file of each plugin. 2179f01cf6aSGabriel Birke * 2189f01cf6aSGabriel Birke * - $lang['js'] must be an array. 2199f01cf6aSGabriel Birke * - Nothing is returned for plugins without an entry for $lang['js'] 2209f01cf6aSGabriel Birke * 2219f01cf6aSGabriel Birke * @author Gabriel Birke <birke@d-scribe.de> 2229f01cf6aSGabriel Birke */ 2239f01cf6aSGabriel Birkefunction js_pluginstrings() 2249f01cf6aSGabriel Birke{ 2259f01cf6aSGabriel Birke global $conf; 2269f01cf6aSGabriel Birke $pluginstrings = array(); 2279f01cf6aSGabriel Birke $plugins = plugin_list(); 2289f01cf6aSGabriel Birke foreach ($plugins as $p){ 2299f01cf6aSGabriel Birke if (isset($lang)) unset($lang); 2309f01cf6aSGabriel Birke if (@file_exists(DOKU_PLUGIN."$p/lang/en/lang.php")) { 2319f01cf6aSGabriel Birke include DOKU_PLUGIN."$p/lang/en/lang.php"; 2329f01cf6aSGabriel Birke } 2339f01cf6aSGabriel Birke if (isset($conf['lang']) && $conf['lang']!='en' && @file_exists(DOKU_PLUGIN."$p/lang/".$conf['lang']."/lang.php")) { 2349f01cf6aSGabriel Birke include DOKU_PLUGIN."$p/lang/".$conf['lang']."/lang.php"; 2359f01cf6aSGabriel Birke } 2369f01cf6aSGabriel Birke if (isset($lang['js'])) { 2379f01cf6aSGabriel Birke $pluginstrings[$p] = $lang['js']; 2389f01cf6aSGabriel Birke } 2399f01cf6aSGabriel Birke } 2409f01cf6aSGabriel Birke return $pluginstrings; 2419f01cf6aSGabriel Birke} 2429f01cf6aSGabriel Birke 2439f01cf6aSGabriel Birke/** 24478a6aeb1SAndreas Gohr * Escapes a String to be embedded in a JavaScript call, keeps \n 24578a6aeb1SAndreas Gohr * as newline 24678a6aeb1SAndreas Gohr * 24778a6aeb1SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 24878a6aeb1SAndreas Gohr */ 24978a6aeb1SAndreas Gohrfunction js_escape($string){ 25078a6aeb1SAndreas Gohr return str_replace('\\\\n','\\n',addslashes($string)); 25178a6aeb1SAndreas Gohr} 25278a6aeb1SAndreas Gohr 25378a6aeb1SAndreas Gohr/** 25478a6aeb1SAndreas Gohr * Adds the given JavaScript code to the window.onload() event 25578a6aeb1SAndreas Gohr * 25678a6aeb1SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 25778a6aeb1SAndreas Gohr */ 25878a6aeb1SAndreas Gohrfunction js_runonstart($func){ 259b1a4fe22SAndreas Gohr echo "addInitEvent(function(){ $func; });".NL; 26078a6aeb1SAndreas Gohr} 26178a6aeb1SAndreas Gohr 26278a6aeb1SAndreas Gohr/** 26378a6aeb1SAndreas Gohr * Strip comments and whitespaces from given JavaScript Code 26478a6aeb1SAndreas Gohr * 26573bea65dSAndreas Gohr * This is a port of Nick Galbreath's python tool jsstrip.py which is 26678a6aeb1SAndreas Gohr * released under BSD license. See link for original code. 26778a6aeb1SAndreas Gohr * 26878a6aeb1SAndreas Gohr * @author Nick Galbreath <nickg@modp.com> 26978a6aeb1SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org> 27073bea65dSAndreas Gohr * @link http://code.google.com/p/jsstrip/ 27178a6aeb1SAndreas Gohr */ 27278a6aeb1SAndreas Gohrfunction js_compress($s){ 27373bea65dSAndreas Gohr $s = ltrim($s); // strip all initial whitespace 27478a6aeb1SAndreas Gohr $s .= "\n"; 27573bea65dSAndreas Gohr $i = 0; // char index for input string 27673bea65dSAndreas Gohr $j = 0; // char forward index for input string 27773bea65dSAndreas Gohr $line = 0; // line number of file (close to it anyways) 27873bea65dSAndreas Gohr $slen = strlen($s); // size of input string 27973bea65dSAndreas Gohr $lch = ''; // last char added 28073bea65dSAndreas Gohr $result = ''; // we store the final result here 28178a6aeb1SAndreas Gohr 28278a6aeb1SAndreas Gohr // items that don't need spaces next to them 28373bea65dSAndreas Gohr $chars = "^&|!+\-*\/%=\?:;,{}()<>% \t\n\r'\"[]"; 28478a6aeb1SAndreas Gohr 28573bea65dSAndreas Gohr while($i < $slen){ 28673bea65dSAndreas Gohr // skip all "boring" characters. This is either 28773bea65dSAndreas Gohr // reserved word (e.g. "for", "else", "if") or a 28873bea65dSAndreas Gohr // variable/object/method (e.g. "foo.color") 28973bea65dSAndreas Gohr while ($i < $slen && (strpos($chars,$s[$i]) === false) ){ 29073bea65dSAndreas Gohr $result .= $s{$i}; 29173bea65dSAndreas Gohr $i = $i + 1; 29273bea65dSAndreas Gohr } 29373bea65dSAndreas Gohr 29478a6aeb1SAndreas Gohr $ch = $s{$i}; 2955cafff96SAndreas Gohr // multiline comments (keeping IE conditionals) 2965cafff96SAndreas Gohr if($ch == '/' && $s{$i+1} == '*' && $s{$i+2} != '@'){ 29778a6aeb1SAndreas Gohr $endC = strpos($s,'*/',$i+2); 29878a6aeb1SAndreas Gohr if($endC === false) trigger_error('Found invalid /*..*/ comment', E_USER_ERROR); 29978a6aeb1SAndreas Gohr $i = $endC + 2; 30078a6aeb1SAndreas Gohr continue; 30178a6aeb1SAndreas Gohr } 30278a6aeb1SAndreas Gohr 30378a6aeb1SAndreas Gohr // singleline 30478a6aeb1SAndreas Gohr if($ch == '/' && $s{$i+1} == '/'){ 30578a6aeb1SAndreas Gohr $endC = strpos($s,"\n",$i+2); 30678a6aeb1SAndreas Gohr if($endC === false) trigger_error('Invalid comment', E_USER_ERROR); 30778a6aeb1SAndreas Gohr $i = $endC; 30878a6aeb1SAndreas Gohr continue; 30978a6aeb1SAndreas Gohr } 31078a6aeb1SAndreas Gohr 31178a6aeb1SAndreas Gohr // tricky. might be an RE 31278a6aeb1SAndreas Gohr if($ch == '/'){ 31378a6aeb1SAndreas Gohr // rewind, skip white space 31478a6aeb1SAndreas Gohr $j = 1; 31578a6aeb1SAndreas Gohr while($s{$i-$j} == ' '){ 31678a6aeb1SAndreas Gohr $j = $j + 1; 31778a6aeb1SAndreas Gohr } 31878a6aeb1SAndreas Gohr if( ($s{$i-$j} == '=') || ($s{$i-$j} == '(') ){ 31978a6aeb1SAndreas Gohr // yes, this is an re 32078a6aeb1SAndreas Gohr // now move forward and find the end of it 32178a6aeb1SAndreas Gohr $j = 1; 32278a6aeb1SAndreas Gohr while($s{$i+$j} != '/'){ 32378a6aeb1SAndreas Gohr while( ($s{$i+$j} != '\\') && ($s{$i+$j} != '/')){ 32478a6aeb1SAndreas Gohr $j = $j + 1; 32578a6aeb1SAndreas Gohr } 32678a6aeb1SAndreas Gohr if($s{$i+$j} == '\\') $j = $j + 2; 32778a6aeb1SAndreas Gohr } 32873bea65dSAndreas Gohr $result .= substr($s,$i,$j+1); 32978a6aeb1SAndreas Gohr $i = $i + $j + 1; 33078a6aeb1SAndreas Gohr continue; 33178a6aeb1SAndreas Gohr } 33278a6aeb1SAndreas Gohr } 33378a6aeb1SAndreas Gohr 33478a6aeb1SAndreas Gohr // double quote strings 33578a6aeb1SAndreas Gohr if($ch == '"'){ 33678a6aeb1SAndreas Gohr $j = 1; 33773bea65dSAndreas Gohr while( $s{$i+$j} != '"' && ($i+$j < $slen)){ 338e5cafda0SAndreas Gohr if( $s{$i+$j} == '\\' && ($s{$i+$j+1} == '"' || $s{$i+$j+1} == '\\') ){ 33945be45c5SAndreas Gohr $j += 2; 34045be45c5SAndreas Gohr }else{ 34145be45c5SAndreas Gohr $j += 1; 34278a6aeb1SAndreas Gohr } 34378a6aeb1SAndreas Gohr } 34473bea65dSAndreas Gohr $result .= substr($s,$i,$j+1); 34578a6aeb1SAndreas Gohr $i = $i + $j + 1; 34678a6aeb1SAndreas Gohr continue; 34778a6aeb1SAndreas Gohr } 34878a6aeb1SAndreas Gohr 34978a6aeb1SAndreas Gohr // single quote strings 35078a6aeb1SAndreas Gohr if($ch == "'"){ 35178a6aeb1SAndreas Gohr $j = 1; 35273bea65dSAndreas Gohr while( $s{$i+$j} != "'" && ($i+$j < $slen)){ 353e5cafda0SAndreas Gohr if( $s{$i+$j} == '\\' && ($s{$i+$j+1} == "'" || $s{$i+$j+1} == '\\') ){ 35445be45c5SAndreas Gohr $j += 2; 35545be45c5SAndreas Gohr }else{ 35645be45c5SAndreas Gohr $j += 1; 35778a6aeb1SAndreas Gohr } 35878a6aeb1SAndreas Gohr } 35973bea65dSAndreas Gohr $result .= substr($s,$i,$j+1); 36078a6aeb1SAndreas Gohr $i = $i + $j + 1; 36178a6aeb1SAndreas Gohr continue; 36278a6aeb1SAndreas Gohr } 36378a6aeb1SAndreas Gohr 36473bea65dSAndreas Gohr // whitespaces 36573bea65dSAndreas Gohr if( $ch == ' ' || $ch == "\r" || $ch == "\n" || $ch == "\t" ){ 36678a6aeb1SAndreas Gohr // leading spaces 36773bea65dSAndreas Gohr if($i+1 < $slen && (strpos($chars,$s[$i+1]) !== false)){ 36878a6aeb1SAndreas Gohr $i = $i + 1; 36978a6aeb1SAndreas Gohr continue; 37078a6aeb1SAndreas Gohr } 37178a6aeb1SAndreas Gohr // trailing spaces 37273bea65dSAndreas Gohr // if this ch is space AND the last char processed 37373bea65dSAndreas Gohr // is special, then skip the space 37473bea65dSAndreas Gohr $lch = substr($result,-1); 37573bea65dSAndreas Gohr if($lch && (strpos($chars,$lch) !== false)){ 37678a6aeb1SAndreas Gohr $i = $i + 1; 37778a6aeb1SAndreas Gohr continue; 37878a6aeb1SAndreas Gohr } 37973bea65dSAndreas Gohr // else after all of this convert the "whitespace" to 38073bea65dSAndreas Gohr // a single space. It will get appended below 38173bea65dSAndreas Gohr $ch = ' '; 38273bea65dSAndreas Gohr } 38378a6aeb1SAndreas Gohr 38478a6aeb1SAndreas Gohr // other chars 38573bea65dSAndreas Gohr $result .= $ch; 38678a6aeb1SAndreas Gohr $i = $i + 1; 38778a6aeb1SAndreas Gohr } 38878a6aeb1SAndreas Gohr 38973bea65dSAndreas Gohr return trim($result); 39078a6aeb1SAndreas Gohr} 39178a6aeb1SAndreas Gohr 39278a6aeb1SAndreas Gohr//Setup VIM: ex: et ts=4 enc=utf-8 : 393