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
|
<?php
/*
+----------------------------------------------------------------------+
| PHP Version 4 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2010 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.0 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_0.txt. |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Moshe Doron <momo@php.net> |
+----------------------------------------------------------------------+
$Id: rtlpatch.php 293138 2010-01-05 10:21:11Z rquadling $
*/
/*
REQUIRES: PHP 4.3.2 CLI or higher
This file is temporary patch allow the hebrew and (in the future arabic) html generation.
this script have to be run after the build proccess.
giving the docs path it's edit the files and add dir=rtl,ltr where needed
CAUTION! be careful here!
that's 'll replace all the file with "rtl" version, so u may want first try it on partial directory.
Usage: php rtlpatch path/to/html/directory
script runing time on my box is about 15% then the build time, not so big deal, that'll force me rewrite the parser in C ;)
*/
//die("\n\n!! remove me later (".__FILE__.":".__LINE__."\n\n");
error_reporting(2047);
// finding the real path of the needed files:
$mypath = $_SERVER["SCRIPT_NAME"];
$spos = strrpos($mypath,"/");
if(!$spos) $spos = strrpos($mypath,"\\");
$mypath = substr($mypath,0,$spos);
if($mypath) $mypath.="/";
$docroot = $_SERVER["argv"][1];
require "$mypath/HtmlParser.class.php";
require "$mypath/HtmlExtParser.class.php";
// clean the new files, use for debuging:
//cleanmyfiles($docroot); exit;
loopfiles($docroot);
//u may choose to comment the following line for not lose the orginal files.
replacemyfiles($docroot);
// ------------------- Functions: -----------------
function loopfiles($dirName){
$qudir=$qufile=array();
if(!($d = @dir($dirName))){
mysyslog("Die: $dirName doesn't exists or have no read permission!\n");
exit;
}
while($entry = $d->read()) {
if ($entry != "." && $entry != "..") {
if (is_dir($dirName."/".$entry)) {
$qudir[] = $entry;
}else{
if(eregi(".html",$entry)||eregi(".php",$entry)) {
$qufile[] = $dirName."/".$entry;
}
}
}
}
$count = count($qufile);
for($a=0;$a<$count;$a++){
fix_file($qufile[$a]);
}
$count = count($qudir);
for($a=0;$a<$count;$a++){
loopfiles($dirName."/".$qudir[$a]);
}
$d->close();
}
function fix_file($file){
mysyslog("start fixing $file");
$txt = mygetfile($file);
$tree = new CHtmlExtParse($txt);
//var_dump($tree);exit;
$tree->fix_hebrew();
$newtext = $tree->get();
savemyfile($file,$newtext);
$tree->unsetme();
unset($tree);
//die("\n---".__LINE__."---".__FILE__);
}
function mygetfile($file){
if(!($f= @fopen($file,"rb"))){
mysyslog("$file doesn't exists or have no read permission");
return false;
}
$ret = "";
while($buf = fread($f,4096)){
$ret.=$buf;
}
fclose($f);
return $ret;
}
function savemyfile($file,$text){
if(!($f= fopen("$file._fixed.html","wb"))){
mysyslog("$file doesn't exists or have no write permission");
return false;
}
fwrite($f,trim($text));
fclose($f);
//die("\n---".__LINE__."---".__FILE__);
return true;
}
function replacemyfiles($dirName){
mysyslog("replaceing the old files with new one; one way ticket...");
if(!($d = @dir($dirName))){
mysyslog("Die: $dirName doesn't exists or have no read permission!\n");
exit;
}
while($entry = $d->read()) {
if ($entry != "." && $entry != "..") {
$dentry = $dirName."/".$entry;
if (is_dir($dentry)) {
replacemyfiles($dentry);
}else{
if(strpos($entry,"._fixed.html")) {
$newfile = str_replace("._fixed.html","",$dentry);
unlink($newfile);
rename($dentry,$newfile);
}
}
}
}
$d->close();
}
function mysyslog($s){
echo "$s\n";
}
?>
|