Server geändert
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
// https://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
@ -824,7 +824,7 @@ class own2 extends own {
|
||||
|
||||
// Bis hierher fpdi, die letzte Klasse von fpdi, wird der ersten Klasse von Table vererbt:
|
||||
// --> extends own2 hieß ursprünglich extends fpdf. fpdf ist die erste vererbung ganz oben
|
||||
// daher ist hier die schnittstelle, wo man die zwei Pakete vererben kann: http://www.cix88.de/cix_fpdf/fpdf_allgemein/cix_tut_052.php
|
||||
// daher ist hier die schnittstelle, wo man die zwei Pakete vererben kann: https://www.cix88.de/cix_fpdf/fpdf_allgemein/cix_tut_052.php
|
||||
|
||||
|
||||
require_once("class.string_tags.php");
|
||||
@ -2241,7 +2241,7 @@ function HTML2FPDF($orientation='P',$unit='mm',$format='A4')
|
||||
|
||||
function setBasePath($str)
|
||||
{
|
||||
//! @desc Inform the script where the html file is (full path - e.g. http://www.google.com/dir1/dir2/dir3/file.html ) in order to adjust HREF and SRC links. No-Parameter: The directory where this script is.
|
||||
//! @desc Inform the script where the html file is (full path - e.g. https://www.google.com/dir1/dir2/dir3/file.html ) in order to adjust HREF and SRC links. No-Parameter: The directory where this script is.
|
||||
//! @return void
|
||||
$this->basepath = dirname($str) . "/";
|
||||
$this->basepath = str_replace("\\","/",$this->basepath); //If on Windows
|
||||
@ -2685,7 +2685,7 @@ function OpenTag($tag,$attr)
|
||||
case 'H4': // 1 * fontsize
|
||||
case 'H5': // 0.83 * fontsize
|
||||
case 'H6': // 0.67 * fontsize
|
||||
//Values obtained from: http://www.w3.org/TR/REC-CSS2/sample.html
|
||||
//Values obtained from: https://www.w3.org/TR/REC-CSS2/sample.html
|
||||
if(isset($attr['ALIGN'])) $this->divalign = $align[strtolower($attr['ALIGN'])];
|
||||
$this->buffer_on = true;
|
||||
if ($this->x != $this->lMargin) $this->Ln(2*$this->lineheight);
|
||||
@ -4168,7 +4168,7 @@ function ReadMetaTags($html)
|
||||
}
|
||||
}
|
||||
//Comercial do Aplicativo usado (no caso um script):
|
||||
$this->SetCreator("HTML2FPDF >> http://html2fpdf.sf.net");
|
||||
$this->SetCreator("HTML2FPDF >> https://html2fpdf.sf.net");
|
||||
}
|
||||
|
||||
//////////////////
|
||||
@ -4365,7 +4365,7 @@ function setCSS($arrayaux)
|
||||
$v = strtoupper($v);
|
||||
switch($v)
|
||||
{
|
||||
//Values obtained from http://www.w3schools.com/html/html_reference.asp
|
||||
//Values obtained from https://www.w3schools.com/html/html_reference.asp
|
||||
case 'XX-SMALL': $this->SetFontSize( (0.7)* 11);
|
||||
break;
|
||||
case 'X-SMALL': $this->SetFontSize( (0.77) * 11);
|
||||
@ -4637,7 +4637,7 @@ function _tableWidth(&$table){
|
||||
{
|
||||
if (!count($list))
|
||||
{//Khong co cot nao co kich thuoc auto => chia deu phan du cho tat ca
|
||||
//http://www.ksvn.com/anhviet_new.htm - translating comments...
|
||||
//https://www.ksvn.com/anhviet_new.htm - translating comments...
|
||||
//bent shrink essence move size measure automatic => divide against give as a whole
|
||||
//$wi = $table['w'] - $wis;
|
||||
$wi = ($table['w'] - $wis)/$numcols;
|
||||
|
Reference in New Issue
Block a user