forked from qwerty/milfs
arreglos en el render de datos
This commit is contained in:
parent
0f0056ee01
commit
f3ba0afc34
193
milfs/funciones/convert.php
Normal file
193
milfs/funciones/convert.php
Normal file
@ -0,0 +1,193 @@
|
||||
<?php
|
||||
function simpleText($html){
|
||||
|
||||
$html = str_replace('–','-',$html);
|
||||
$html = str_replace('"','"',$html);
|
||||
$html = preg_replace('/\&(nbsp);/','&${1};',$html);
|
||||
|
||||
//formatting
|
||||
// bold
|
||||
$html = preg_replace('/\'\'\'([^\n\']+)\'\'\'/','<strong>${1}</strong>',$html);
|
||||
// emphasized
|
||||
$html = preg_replace('/\'\'([^\'\n]+)\'\'?/','<em>${1}</em>',$html);
|
||||
//interwiki links
|
||||
$html = preg_replace_callback('/\[\[([^\|\n\]:]+)[\|]([^\]]+)\]\]/','helper_interwikilinks',$html);
|
||||
// without text
|
||||
$html = preg_replace_callback('/\[\[([^\|\n\]:]+)\]\]/','helper_interwikilinks',$html);
|
||||
//
|
||||
//$html = preg_replace('/{{([^}]+)+}}/','Interwiki: ${1}+${2}+${3}',$html);
|
||||
$html = preg_replace('/{{([^\|\n\}]+)([\|]?([^\}]+))+\}\}/','Interwiki: ${1} » ${3}',$html);
|
||||
// Template
|
||||
//$html = preg_replace('/{{([^}]*)}}/',' ',$html);
|
||||
// categories
|
||||
//$html = preg_replace('/\[\[([^\|\n\]]+)([\|]([^\]]+))?\]\]/','',$html);
|
||||
$html = preg_replace('/\[\[([^\|\n\]]{2})([\:]([^\]]+))?\]\]/','Translation: ${1} » ${3}',$html);
|
||||
$html = preg_replace('/\[\[([^\|\n\]]+)([\:]([^\]]+))?\]\]/','Category: ${1} - ${2}',$html);
|
||||
// image
|
||||
$html = preg_replace('/\[\[([^\|\n\]]+)([\|]([^\]]+))+\]\]/','Image: ${0}+${1}+${2}+${3}',$html);
|
||||
|
||||
//links
|
||||
//$html = preg_replace('/\[([^\[\]\|\n\': ]+)\]/','<a href="${1}">${1}</a>',$html);
|
||||
$html = preg_replace_callback('/\[([^\[\]\|\n\': ]+)\]/','helper_externlinks',$html);
|
||||
// with text
|
||||
//$html = preg_replace('/\[([^\[\]\|\n\' ]+)[\| ]([^\]\']+)\]/','<a href="${1}">${2}</a>',$html);
|
||||
$html = preg_replace_callback('/\[([^\[\]\|\n\' ]+)[\| ]([^\]\']+)\]/','helper_externlinks',$html);
|
||||
|
||||
// allowed tags
|
||||
$html = preg_replace('/<(\/?)(small|sup|sub|u)>/','<${1}${2}>',$html);
|
||||
|
||||
$html = preg_replace('/\n*<br *\/?>\n*/',"\n",$html);
|
||||
$html = preg_replace('/<(\/?)(math|pre|code|nowiki)>/','<${1}pre>',$html);
|
||||
$html = preg_replace('/<!--/','<!--',$html);
|
||||
$html = preg_replace('/-->/',' -->',$html);
|
||||
|
||||
// headings
|
||||
for($i=7;$i>0;$i--){
|
||||
$html = preg_replace(
|
||||
'/\n+[=]{'.$i.'}([^=]+)[=]{'.$i.'}\n*/',
|
||||
'<h'.$i.'>${1}</h'.$i.'>',
|
||||
$html
|
||||
);
|
||||
}
|
||||
|
||||
//lists
|
||||
$html = preg_replace(
|
||||
'/(\n[ ]*[^#* ][^\n]*)\n(([ ]*[*]([^\n]*)\n)+)/',
|
||||
'${1}<ul>'."\n".'${2}'.'</ul>'."\n",
|
||||
$html
|
||||
);
|
||||
$html = preg_replace(
|
||||
'/(\n[ ]*[^#* ][^\n]*)\n(([ ]*[#]([^\n]*)\n)+)/',
|
||||
'${1}<ol>'."\n".'${2}'.'</ol>'."\n",
|
||||
$html
|
||||
);
|
||||
$html = preg_replace('/\n[ ]*[\*#]+([^\n]*)/','<li>${1}</li>',$html);
|
||||
|
||||
$html = preg_replace('/----/','<hr />',$html);
|
||||
|
||||
//$html = nl2br($html);
|
||||
// line breaks
|
||||
$html = preg_replace('/[\n\r]{4}/',"<br/><br/>",$html);
|
||||
$html = preg_replace('/[\n\r]{2}/',"<br/>",$html);
|
||||
|
||||
$html = preg_replace('/[>]<br\/>[<]/',"><",$html);
|
||||
|
||||
return $html;
|
||||
}
|
||||
function helper_externlinks($matches){
|
||||
$target = $matches[1];
|
||||
$text = empty($matches[2])?$matches[1]:$matches[2];
|
||||
return '<a href="'.$target.'">'.$text.'</a>';
|
||||
}
|
||||
function helper_interwikilinks($matches){
|
||||
$target = $matches[1];
|
||||
$text = empty($matches[2])?$matches[1]:$matches[2];
|
||||
$class=" class=\"dunno\" ";
|
||||
/*static $links_checked_interwiki = 0;
|
||||
if(!$_GET["nocache"] && ++$links_checked_interwiki<10){
|
||||
$data = cachedFunc("getPos",$target);
|
||||
if($data["pos"]) $class = " class=\"exists\" "; $class = " class=\"notexists\" ";
|
||||
}*/
|
||||
return '<a '.$class.' href="?pages='.$target.'">'.$text.'</a>';
|
||||
}
|
||||
function convertTables($text){
|
||||
$lines = explode("\n",$text);
|
||||
$innertable = 0;
|
||||
$innertabledata = array();
|
||||
foreach($lines as $line){
|
||||
//echo "<pre>".++$i.": ".htmlspecialchars($line)."</pre>";
|
||||
$line = str_replace("position:relative","",$line);
|
||||
$line = str_replace("position:absolute","",$line);
|
||||
if(substr($line,0,2) == '{|'){
|
||||
// inner table
|
||||
//echo "<p>beginning inner table #$innertable</p>";
|
||||
$innertable++;
|
||||
}
|
||||
$innertabledata[$innertable] .= $line . "\n";
|
||||
if($innertable){
|
||||
// we're inside
|
||||
if(substr($line,0,2) == '|}'){
|
||||
$innertableconverted = convertTable($innertabledata[$innertable]);
|
||||
$innertabledata[$innertable] = "";
|
||||
$innertable--;
|
||||
$innertabledata[$innertable] .= $innertableconverted."\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
return $innertabledata[0];
|
||||
}
|
||||
|
||||
function convertTable($intext){
|
||||
$text = $intext;
|
||||
$lines = explode("\n",$text);
|
||||
$intable = false;
|
||||
|
||||
//var_dump($lines);
|
||||
foreach($lines as $line){
|
||||
$line = trim($line);
|
||||
if(substr($line,0,1) == '{'){
|
||||
//begin of the table
|
||||
$stuff = explode('| ',substr($line,1),2);
|
||||
$tableopen = true;
|
||||
$table = "<table ".$stuff[0].">\n";
|
||||
} else if(substr($line,0,1) == '|'){
|
||||
// table related
|
||||
$line = substr($line,1);
|
||||
if(substr($line,0,5) == '-----'){
|
||||
// row break
|
||||
if($thopen)
|
||||
$table .="</th>\n";
|
||||
if($tdopen)
|
||||
$table .="</td>\n";
|
||||
if($rowopen)
|
||||
$table .="\t</tr>\n";
|
||||
$table .= "\t<tr>\n";
|
||||
$rowopen = true;
|
||||
$tdopen = false;
|
||||
$thopen = false;
|
||||
}else if(substr($line,0,1) == '}'){
|
||||
// table end
|
||||
break;
|
||||
}else{
|
||||
// td
|
||||
$stuff = explode('| ',$line,2);
|
||||
if($tdopen)
|
||||
$table .="</td>\n";
|
||||
if(count($stuff)==1)
|
||||
$table .= "\t\t<td>".simpleText($stuff[0]);
|
||||
else
|
||||
$table .= "\t\t<td ".$stuff[0].">".
|
||||
simpleText($stuff[1]);
|
||||
$tdopen = true;
|
||||
}
|
||||
} else if(substr($line,0,1) == '!'){
|
||||
// th
|
||||
$stuff = explode('| ',substr($line,1),2);
|
||||
if($thopen)
|
||||
$table .="</th>\n";
|
||||
if(count($stuff)==1)
|
||||
$table .= "\t\t<th>".simpleText($stuff[0]);
|
||||
else
|
||||
$table .= "\t\t<th ".$stuff[0].">".
|
||||
simpleText($stuff[1]);
|
||||
$thopen = true;
|
||||
}else{
|
||||
// plain text
|
||||
$table .= simpleText($line) ."\n";
|
||||
}
|
||||
//echo "<pre>".++$i.": ".htmlspecialchars($line)."</pre>";
|
||||
//echo "<p>Table so far: <pre>".htmlspecialchars($table)."</pre></p>";
|
||||
}
|
||||
if($thopen)
|
||||
$table .="</th>\n";
|
||||
if($tdopen)
|
||||
$table .="</td>\n";
|
||||
if($rowopen)
|
||||
$table .="\t</tr>\n";
|
||||
if($tableopen)
|
||||
$table .="</table>\n";
|
||||
//echo "<hr />";
|
||||
//echo "<p>Table at the end: <pre>".htmlspecialchars($table)."</pre></p>";
|
||||
//echo $table;
|
||||
return $table;
|
||||
}
|
@ -305,6 +305,7 @@ $xajax->registerFunction("editar_campo");
|
||||
|
||||
|
||||
function formulario_imprimir($id,$control,$tipo) {
|
||||
|
||||
$id = mysql_seguridad($id);
|
||||
if($tipo =='obligatorio'){ $w_tipo = "AND obligatorio = '1' ";}
|
||||
if($id !='') {$w_id = "AND form_id = '$id'";}
|
||||
@ -323,6 +324,7 @@ $timestamp=mysql_result($sql,0,"timestamp");
|
||||
$fecha = date ( "Y-m-d h:i:s" , $timestamp);
|
||||
|
||||
if (mysql_num_rows($sql)!='0'){
|
||||
|
||||
mysql_data_seek($sql, 0);
|
||||
$resultado ="
|
||||
<div class='row' >";
|
||||
@ -344,12 +346,32 @@ if (mysql_num_rows($sql)!='0'){
|
||||
$lat = $campos[0];
|
||||
$lon = $campos[1];
|
||||
$zoom = $campos[2];
|
||||
$contenido = "<img class='img-thumbnail ' src='http://dev.openstreetmap.de/staticmap/staticmap.php?center=$lon,$lat&zoom=$zoom&size=350x150&maptype=mapnik&markers=$lon,$lat,red-pushpin' >";
|
||||
$contenido = "
|
||||
<img class='img-thumbnail ' src='http://dev.openstreetmap.de/staticmap/staticmap.php?center=$lon,$lat&zoom=$zoom&size=350x150&maptype=mapnik&markers=$lon,$lat,red-pushpin' >";
|
||||
}
|
||||
else {$contenido = "$contenido";}
|
||||
else {
|
||||
$html ="$contenido";
|
||||
$html = html_entity_decode($html);
|
||||
//$html = str_replace('–','-',$html);
|
||||
//$html = str_replace('"','"',$html);
|
||||
//$html = preg_replace('/\&(nbsp);/','&${1};',$html);
|
||||
|
||||
|
||||
$html = str_replace('{{PAGENAME}}',$title,$html);
|
||||
|
||||
// Table
|
||||
$html = convertTables($html);
|
||||
|
||||
$html = simpleText($html);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
$contenido = "$html";}
|
||||
$campo_nombre = remplacetas('form_campos','id',$row[id_campo],'campo_nombre');
|
||||
|
||||
$resultado .= "<div class='row'><div class='col-lg-4 '>$campo_nombre[0]</div><div class='col-lg-8'><b>$contenido</b></div></div>";
|
||||
$resultado .= "<div class='row'><div class='col-lg-4 '>$campo_nombre[0]</div><div class='col-lg-8'>$contenido</div></div>";
|
||||
}
|
||||
|
||||
$resultado .=" </div>
|
||||
@ -1887,7 +1909,7 @@ return $existe;
|
||||
|
||||
function formulario_grabar($formulario) {
|
||||
$respuesta = new xajaxResponse('utf-8');
|
||||
$formulario = mysql_seguridad($formulario);
|
||||
//$formulario = mysql_seguridad($formulario);
|
||||
$consulta_grabada ='0';
|
||||
$control = $formulario[control]; //
|
||||
$form_id = $formulario[form_id]; //
|
||||
@ -1983,8 +2005,8 @@ if(is_null($igual) ){$repetido = 0;}else{
|
||||
$repetido = 1;
|
||||
}
|
||||
|
||||
$debug .= " (c= $c md5 = $md5 , igual = $igual, repetid =$repetido <!--, V= $V -->)<br>";
|
||||
$respuesta->addAssign("respuesta_$control","innerHTML","$debug");
|
||||
//$debug .= " (c= $c md5 = $md5 , igual = $igual, repetid =$repetido <!--, V= $V -->)<br>";
|
||||
//$respuesta->addAssign("respuesta_$control","innerHTML","$debug");
|
||||
//return $respuesta;
|
||||
//$respuesta->addAlert("$debug");
|
||||
//return $respuesta;
|
||||
@ -1992,6 +2014,7 @@ $respuesta->addAssign("respuesta_$control","innerHTML","$debug");
|
||||
if(($V !='') && (is_numeric($c)) AND $repetido !=1 ) {
|
||||
$ip = obtener_ip();
|
||||
$graba_ip = "INET_ATON('".$ip."') ";
|
||||
$V = mysql_real_escape_string($V);
|
||||
$consulta ="
|
||||
INSERT INTO `form_datos` (`id`, `id_campo`,`form_id`, `id_usuario`, `contenido`, `timestamp`, `control`, ip , id_empresa)
|
||||
VALUES (NULL, '$c', '$formulario[form_id]', '$_SESSION[id]', '$V', UNIX_TIMESTAMP(), '$formulario[control]',$graba_ip,'$id_empresa');";
|
||||
@ -2081,7 +2104,7 @@ function mysql_seguridad($inp) {
|
||||
return array_map(__METHOD__, $inp);
|
||||
|
||||
if(!empty($inp) && is_string($inp)) {
|
||||
return str_replace(array('\\', "\0", "\n", "\r", "'", '"', "\x1a"), array('\\\\', '\\0', '\\n', '\\r', "\\*", "\\*", '\\Z'), $inp);
|
||||
return str_replace(array('\\', "\0", "'", '"', "\x1a"), array('\\\\', '\\0', "\\*", "\\*", '\\Z'), $inp);
|
||||
}
|
||||
|
||||
return $inp;
|
||||
|
Loading…
Reference in New Issue
Block a user