WhitespaceClean-resources/others

whitespace pass over files
for reference regex that was used s/[ \t]+(\r?\n)/\1/
This commit is contained in:
mafoo 2016-03-11 13:57:01 +00:00
parent 66ba2802bd
commit 5e97c0df2c
18 changed files with 166 additions and 166 deletions

View File

@ -3,7 +3,7 @@
// email : fuushikaden@yahoo.com
//////////////////////////////////////////////////////////////////////////////////
// Layers
// Layers
//////////////////////////////////////////////////////////////////////////////////
var layerQueue=new Array()
@ -21,22 +21,22 @@ function hideElement( elmID, overDiv )
{
continue;
}
// Find the element's offsetTop and offsetLeft relative to the BODY tag.
objLeft = obj.offsetLeft;
objTop = obj.offsetTop;
objParent = obj.offsetParent;
while( objParent.tagName.toUpperCase() != "BODY" )
{
objLeft += objParent.offsetLeft;
objTop += objParent.offsetTop;
objParent = objParent.offsetParent;
}
objHeight = obj.offsetHeight;
objWidth = obj.offsetWidth;
if(( overDiv.offsetLeft + overDiv.offsetWidth ) <= objLeft );
else if(( overDiv.offsetTop + overDiv.offsetHeight ) <= objTop );
else if( overDiv.offsetTop >= ( objTop + objHeight ));
@ -48,7 +48,7 @@ function hideElement( elmID, overDiv )
}
}
}
/*
* unhides <select> and <applet> objects (for IE only)
*/
@ -59,12 +59,12 @@ function showElement( elmID )
for( i = 0; i < document.getElementsByTagName( elmID ).length; i++ )
{
obj = document.getElementsByTagName( elmID )[i];
if( !obj || !obj.offsetParent )
{
continue;
}
obj.style.visibility = "";
}
}
@ -96,7 +96,7 @@ function lw_showLayer (layerName) {
hideElement( 'SELECT', document.getElementById(layerName) );
hideElement( 'APPLET', document.getElementById(layerName) );
}
}
}
function lw_hideLayer () {
@ -120,11 +120,11 @@ function lw_hideLayerName (layerName) {
{
if ((layerQueue[i]!="")&&(layerQueue[i]!=layerName))
{
tmpQueue [++newIndex] = layerQueue[i]
tmpQueue [++newIndex] = layerQueue[i]
hideElement( 'SELECT', document.getElementById(layerQueue[i]) );
hideElement( 'APPLET', document.getElementById(layerQueue[i]) );
}
}
layerQueue = tmpQueue
@ -161,7 +161,7 @@ function lw_escLayer (e) {
else
if ((event.keyCode==0)||(event.keyCode==27))
{
lw_closeLastLayer()
lw_closeLastLayer()
}
}

View File

@ -55,32 +55,32 @@ var nNowAt = 0
function displayMenuItem(menuId) {
var sHTML
if (menu[menuId].parentId>0)
{
ItemForeground = subItemForeground
Border = subItemBorder
Background = subItemBackground
ItemForeground = subItemForeground
Border = subItemBorder
Background = subItemBackground
HoverForeground = subItemHoverForeground
HoverBorder = subItemHoverBorder
HoverBackground = subItemHoverBackground
HoverForeground = subItemHoverForeground
HoverBorder = subItemHoverBorder
HoverBackground = subItemHoverBackground
}
else
{
ItemForeground = mainItemForeground
Border = mainItemBorder
Background = mainItemBackground
ItemForeground = mainItemForeground
Border = mainItemBorder
Background = mainItemBackground
HoverForeground = mainItemHoverForeground
HoverBorder = mainItemHoverBorder
HoverBackground = mainItemHoverBackground
HoverForeground = mainItemHoverForeground
HoverBorder = mainItemHoverBorder
HoverBackground = mainItemHoverBackground
}
if ((orientation==1)||(menu[menuId].levelId>0))
{
sHTML += "<tr>"
}
}
if (menu[menuId].description!='-')
{
@ -145,7 +145,7 @@ function displayMenuItem(menuId) {
if ((orientation==1)||(menu[menuId].levelId>0))
{
sHTML += "</tr>"
}
}
return sHTML
}
@ -153,13 +153,13 @@ function clearAll(levelId, parentId) {
if (levelId>0)
{
Border = subItemBorder
Background = subItemBackground
Border = subItemBorder
Background = subItemBackground
}
else
{
Border = mainItemBorder
Background = mainItemBackground
Border = mainItemBorder
Background = mainItemBackground
}
for (i=0;i<menuCounter;i++)
@ -202,7 +202,7 @@ function showSubmenu(menuId,trigger) {
function showActualSubmenu(menuId,trigger) {
var nLevel = 0
var leftpos = 0
var leftpos = 0
var nIndex=0
if (menuId>0)
@ -212,7 +212,7 @@ function showActualSubmenu(menuId,trigger) {
for (var i=0;i<menuCounter;i++)
{
if (menu[i].id==menuId)
{
{
nLevel = menu[i].levelId
nIndex = i
}
@ -246,7 +246,7 @@ function showActualSubmenu(menuId,trigger) {
document.getElementById("menu_level_"+nLevel+"_content").innerHTML=sHTML
lw_showLayer('menu_level_'+nLevel)
}
}
}
function hideSubmenu(levelId) {
@ -262,16 +262,16 @@ function DrawMenu () {
{
lw_createLayer("menu_level_"+i,0,0,0,0,"#ffffff","#d0d0d0",100)
}
sHTML="<table width=100% cellpadding=2 cellspacing=0>"
for (var i=0; i<menuCounter; i++)
{
if (menu[i].parentId==0)
{
{
sHTML += displayMenuItem (i)
}
else if (menu[i].parentId==-1)
{
{
sHTML += "<tr><td valign='top'><img src='trans' height=2></td></tr><tr bgcolor='"+mainItemBackground+"'><td style='padding:5px'><b>" + menu[i].description + "</b></td></tr>"
}
}
@ -291,7 +291,7 @@ function getLevel (menuId) {
for (var i=0;i<menuCounter;i++)
{
if (menu[i].id==pId)
{
{
pId = menu[i].parentId
}
}
@ -316,10 +316,10 @@ function AddMenuItem (id, parentId, url, description, img) {
menu[menuCounter-1].levelId = getLevel(parentId)
if ( numLevel < menu[menuCounter-1].levelId)
{
{
numLevel = menu[menuCounter-1].levelId
}
}
}
else if (parentId==0)
{
menu[menuCounter-1].levelId = 0

View File

@ -46,22 +46,22 @@
{
continue;
}
// Find the element's offsetTop and offsetLeft relative to the BODY tag.
objLeft = obj.offsetLeft;
objTop = obj.offsetTop;
objParent = obj.offsetParent;
while( objParent.tagName.toUpperCase() != "BODY" )
{
objLeft += objParent.offsetLeft;
objTop += objParent.offsetTop;
objParent = objParent.offsetParent;
}
objHeight = obj.offsetHeight;
objWidth = obj.offsetWidth;
if(( overDiv.offsetLeft + overDiv.offsetWidth ) <= objLeft );
else if(( overDiv.offsetTop + overDiv.offsetHeight ) <= objTop );
else if( overDiv.offsetTop >= ( objTop + objHeight ));
@ -73,7 +73,7 @@
}
}
}
/*
* unhides <select> and <applet> objects (for IE only)
*/
@ -84,12 +84,12 @@
for( i = 0; i < document.all.tags( elmID ).length; i++ )
{
obj = document.all.tags( elmID )[i];
if( !obj || !obj.offsetParent )
{
continue;
}
obj.style.visibility = "";
}
}
@ -126,7 +126,7 @@
//bottom background
document.write ("<tr bgcolor=#f0f0f0><td style='padding:5px' align=center><span id='lblToday'></span></td></tr>")
}
document.write ("</table></div><div id='selectMonth' style='z-index:+999;position:absolute;visibility:hidden;'></div><div id='selectYear' style='z-index:+999;position:absolute;visibility:hidden;'></div>");
}
@ -171,7 +171,7 @@
sHTML1+="<span id='spanRight' style='border-style:solid;border-width:0;border-color:#D3DCE4;cursor:pointer' onmouseover='swapImage(\"changeRight\",\"calright.png\");window.status=\""+scrollRightMessage+"\"' onmouseout='clearInterval(intervalID1);swapImage(\"changeRight\",\"calright.png\");window.status=\"\"' onclick='incMonth()' onmousedown='clearTimeout(timeoutID1);timeoutID1=setTimeout(\"StartIncMonth()\",500)' onmouseup='clearTimeout(timeoutID1);clearInterval(intervalID1)'>&nbsp<IMG id='changeRight' SRC='"+imgDir+"calright.png' BORDER=0>&nbsp</span>&nbsp"
sHTML1+="<span id='spanMonth' style='border-style:solid;border-width:0;border-color:#D3DCE4;cursor:pointer' onmouseover='swapImage(\"changeMonth\",\"caldrop.png\");window.status=\""+selectMonthMessage+"\"' onmouseout='swapImage(\"changeMonth\",\"caldrop.png\");window.status=\"\"' onclick='popUpMonth()'></span>&nbsp;"
sHTML1+="<span id='spanYear' style='border-style:solid;border-width:0;border-color:#D3DCE4;cursor:pointer' onmouseover='swapImage(\"changeYear\",\"caldrop.png\");window.status=\""+selectYearMessage+"\"' onmouseout='swapImage(\"changeYear\",\"caldrop.png\");window.status=\"\"' onclick='popUpYear()'></span>&nbsp;"
document.getElementById("caption").innerHTML = sHTML1
bPageLoaded=true
@ -272,7 +272,7 @@
crossMonthObj.top = parseInt(crossobj.top) + 26
hideElement( 'SELECT', document.getElementById("selectMonth") );
hideElement( 'APPLET', document.getElementById("selectMonth") );
hideElement( 'APPLET', document.getElementById("selectMonth") );
}
function popDownMonth() {
@ -376,7 +376,7 @@
// L = d4 / 1460
// d1 = ((d4 - L) mod 365) + L
// WeekNumber = d1 / 7 + 1
year = n.getFullYear();
month = n.getMonth() + 1;
if (startAt == 0) {
@ -385,7 +385,7 @@
else {
day = n.getDate();
}
a = Math.floor((14-month) / 12);
y = year + 4800 - a;
m = month + 12 * a - 3;
@ -395,7 +395,7 @@
L = Math.floor(d4 / 1460);
d1 = ((d4 - L) % 365) + L;
week = Math.floor(d1/7) + 1;
return week;
}
@ -419,7 +419,7 @@
datePointer = 0
dayPointer = startDate.getDay() - startAt
if (dayPointer<0)
{
dayPointer = 6
@ -436,7 +436,7 @@
sHTML += "<td width='27' align='right'><B>"+ dayName[i]+"</B></td>"
}
sHTML +="</tr><tr>"
if (showWeekNumber==1)
{
sHTML += "<td align=right>" + WeekNbr(startDate) + "&nbsp;</td>"
@ -446,7 +446,7 @@
{
sHTML += "<td>&nbsp;</td>"
}
for ( datePointer=1; datePointer<=numDaysInMonth; datePointer++ )
{
dayPointer++;
@ -481,8 +481,8 @@
{ sHTML += "<a "+dateMessage+" title=\"" + sHint + "\" style='"+sStyle+"' href='javascript:dateSelected="+datePointer + ";closeCalendar();'>&nbsp;" + datePointer + "&nbsp;</a>" }
sHTML += ""
if ((dayPointer+startAt) % 7 == startAt) {
sHTML += "</tr><tr>"
if ((dayPointer+startAt) % 7 == startAt) {
sHTML += "</tr><tr>"
if ((showWeekNumber==1)&&(datePointer<numDaysInMonth))
{
sHTML += "<td align=right>" + (WeekNbr(new Date(yearSelected,monthSelected,datePointer+1))) + "&nbsp;</td>"
@ -600,7 +600,7 @@
crossobj.visibility=(dom||ie)? "visible" : "show"
hideElement( 'SELECT', document.getElementById("calendar") );
hideElement( 'APPLET', document.getElementById("calendar") );
hideElement( 'APPLET', document.getElementById("calendar") );
bShow = true;
}
@ -613,13 +613,13 @@
}
}
document.onkeypress = function hidecal1 () {
if (event.keyCode==27)
document.onkeypress = function hidecal1 () {
if (event.keyCode==27)
{
hideCalendar()
}
}
document.onclick = function hidecal2 () {
document.onclick = function hidecal2 () {
if (!bShow)
{
hideCalendar()

View File

@ -38,7 +38,7 @@ $pathtofonts = "/captcha/fonts/"; //path from the root of the website
<td align='right'><input type="text" name="captcha" size="15"></td>
</tr>
</table>
//Option2: or add this to the html form
<br>
<script language="JavaScript" type="text/javascript">

View File

@ -7,7 +7,7 @@
Released under New BSD license
http://www.opensource.org/licenses/bsd-license.php
Sample Code
----------------
$validator = new EmailAddressValidator;
@ -25,12 +25,12 @@ class EmailAddressValidator {
* @return True if email is valid, false if not
*/
public function check_email_address($strEmailAddress) {
// If magic quotes is "on", email addresses with quote marks will
// fail validation because of added escape characters. Uncommenting
// the next three lines will allow for this issue.
//if (get_magic_quotes_gpc()) {
// $strEmailAddress = stripslashes($strEmailAddress);
//if (get_magic_quotes_gpc()) {
// $strEmailAddress = stripslashes($strEmailAddress);
//}
// Control characters are not allowed
@ -52,7 +52,7 @@ class EmailAddressValidator {
$arrEmailAddress[0] = substr($strEmailAddress, 0, $intAtSymbol);
$arrEmailAddress[1] = substr($strEmailAddress, $intAtSymbol + 1);
// Count the "@" symbols. Only one is allowed, except where
// Count the "@" symbols. Only one is allowed, except where
// contained in quote marks in the local part. Quickest way to
// check this is to remove anything in quotes. We also remove
// characters escaped with backslash, and the backslash
@ -105,7 +105,7 @@ class EmailAddressValidator {
$arrLocalPortion = explode('.', $strLocalPortion);
for ($i = 0, $max = sizeof($arrLocalPortion); $i < $max; $i++) {
if (!preg_match('.^('
. '([A-Za-z0-9!#$%&\'*+/=?^_`{|}~-]'
. '([A-Za-z0-9!#$%&\'*+/=?^_`{|}~-]'
. '[A-Za-z0-9!#$%&\'*+/=?^_`{|}~-]{0,63})'
.'|'
. '("[^\\\"]{0,62}")'
@ -130,7 +130,7 @@ class EmailAddressValidator {
// Check if domain is IP, possibly enclosed in square brackets.
if (preg_match('/^(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])'
.'(\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3}$/'
,$strDomainPortion) ||
,$strDomainPortion) ||
preg_match('/^\[(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])'
.'(\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3}\]$/'
,$strDomainPortion)) {

View File

@ -76,7 +76,7 @@ require_once "resources/require.php";
//prepare the template to display the output
$custom_head = '';
if (isset($_SESSION["theme"]["title"]["text"])) {
if (strlen($_SESSION["theme"]["title"]["text"]) > 0) {
$document_title = (($document["title"] != '') ? $document["title"]." - " : null).$_SESSION["theme"]["title"]["text"];

View File

@ -44,7 +44,7 @@ class FPDI extends FPDF_TPL
* @var fpdi_pdf_parser[]
*/
public $parsers = array();
/**
* Current parser
*
@ -65,7 +65,7 @@ class FPDI extends FPDF_TPL
* @var array
*/
protected $_objStack;
/**
* Done object stack
*
@ -79,14 +79,14 @@ class FPDI extends FPDF_TPL
* @var integer
*/
protected $_currentObjId;
/**
* Cache for imported pages/template ids
*
* @var array
*/
protected $_importedPages = array();
/**
* Set a source-file.
*
@ -103,7 +103,7 @@ class FPDI extends FPDF_TPL
$filename = $_filename;
$this->currentFilename = $filename;
if (!isset($this->parsers[$filename])) {
$this->parsers[$filename] = $this->_getPdfParser($filename);
$this->setPdfVersion(
@ -112,10 +112,10 @@ class FPDI extends FPDF_TPL
}
$this->currentParser =& $this->parsers[$filename];
return $this->parsers[$filename]->getPageCount();
}
/**
* Returns a PDF parser object
*
@ -127,7 +127,7 @@ class FPDI extends FPDF_TPL
require_once('fpdi_pdf_parser.php');
return new fpdi_pdf_parser($filename);
}
/**
* Get the current PDF version.
*
@ -137,7 +137,7 @@ class FPDI extends FPDF_TPL
{
return $this->PDFVersion;
}
/**
* Set the PDF version.
*
@ -147,7 +147,7 @@ class FPDI extends FPDF_TPL
{
$this->PDFVersion = sprintf('%.1F', $version);
}
/**
* Import a page.
*
@ -178,7 +178,7 @@ class FPDI extends FPDF_TPL
if ($this->_inTpl) {
throw new LogicException('Please import the desired pages before creating a new template.');
}
$fn = $this->currentFilename;
$boxName = '/' . ltrim($boxName, '/');
@ -187,16 +187,16 @@ class FPDI extends FPDF_TPL
if (isset($this->_importedPages[$pageKey])) {
return $this->_importedPages[$pageKey];
}
$parser = $this->parsers[$fn];
$parser->setPageNo($pageNo);
if (!in_array($boxName, $parser->availableBoxes)) {
throw new InvalidArgumentException(sprintf('Unknown box: %s', $boxName));
}
$pageBoxes = $parser->getPageBoxes($pageNo, $this->k);
/**
* MediaBox
* CropBox: Default -> MediaBox
@ -208,14 +208,14 @@ class FPDI extends FPDF_TPL
$boxName = '/CropBox';
if (!isset($pageBoxes[$boxName]) && $boxName == '/CropBox')
$boxName = '/MediaBox';
if (!isset($pageBoxes[$boxName]))
return false;
$this->lastUsedPageBox = $boxName;
$box = $pageBoxes[$boxName];
$this->tpl++;
$this->_tpls[$this->tpl] = array();
$tpl =& $this->_tpls[$this->tpl];
@ -230,33 +230,33 @@ class FPDI extends FPDF_TPL
// To build an array that can be used by PDF_TPL::useTemplate()
$this->_tpls[$this->tpl] = array_merge($this->_tpls[$this->tpl], $box);
// An imported page will start at 0,0 all the time. Translation will be set in _putformxobjects()
$tpl['x'] = 0;
$tpl['y'] = 0;
// handle rotated pages
$rotation = $parser->getPageRotation($pageNo);
$tpl['_rotationAngle'] = 0;
if (isset($rotation[1]) && ($angle = $rotation[1] % 360) != 0) {
$steps = $angle / 90;
$_w = $tpl['w'];
$_h = $tpl['h'];
$tpl['w'] = $steps % 2 == 0 ? $_w : $_h;
$tpl['h'] = $steps % 2 == 0 ? $_h : $_w;
if ($angle < 0)
$angle += 360;
$tpl['_rotationAngle'] = $angle * -1;
}
$this->_importedPages[$pageKey] = $this->tpl;
return $this->tpl;
}
/**
* Returns the last used page boundary box.
*
@ -295,12 +295,12 @@ class FPDI extends FPDF_TPL
$size = $this->getTemplateSize($tplIdx, $w, $h);
$orientation = $size['w'] > $size['h'] ? 'L' : 'P';
$size = array($size['w'], $size['h']);
if (is_subclass_of($this, 'TCPDF')) {
$this->setPageFormat($size, $orientation);
} else {
$size = $this->_getpagesize($size);
if($orientation != $this->CurOrientation ||
$size[0] != $this->CurPageSize[0] ||
$size[1] != $this->CurPageSize[1]
@ -320,16 +320,16 @@ class FPDI extends FPDF_TPL
$this->CurPageSize = $size;
$this->PageSizes[$this->page] = array($this->wPt, $this->hPt);
}
}
}
}
$this->_out('q 0 J 1 w 0 j 0 G 0 g'); // reset standard values
$size = parent::useTemplate($tplIdx, $x, $y, $w, $h);
$this->_out('Q');
return $size;
}
/**
* Copy all imported objects to the resulting document.
*/
@ -373,33 +373,33 @@ class FPDI extends FPDF_TPL
foreach($this->_tpls AS $tplIdx => $tpl) {
$this->_newobj();
$currentN = $this->n; // TCPDF/Protection: rem current "n"
$this->_tpls[$tplIdx]['n'] = $this->n;
$this->_out('<<' . $filter . '/Type /XObject');
$this->_out('/Subtype /Form');
$this->_out('/FormType 1');
$this->_out(sprintf('/BBox [%.2F %.2F %.2F %.2F]',
$this->_out(sprintf('/BBox [%.2F %.2F %.2F %.2F]',
(isset($tpl['box']['llx']) ? $tpl['box']['llx'] : $tpl['x']) * $this->k,
(isset($tpl['box']['lly']) ? $tpl['box']['lly'] : -$tpl['y']) * $this->k,
(isset($tpl['box']['urx']) ? $tpl['box']['urx'] : $tpl['w'] + $tpl['x']) * $this->k,
(isset($tpl['box']['ury']) ? $tpl['box']['ury'] : $tpl['h'] - $tpl['y']) * $this->k
));
$c = 1;
$s = 0;
$tx = 0;
$ty = 0;
if (isset($tpl['box'])) {
$tx = -$tpl['box']['llx'];
$ty = -$tpl['box']['lly'];
$ty = -$tpl['box']['lly'];
if ($tpl['_rotationAngle'] <> 0) {
$angle = $tpl['_rotationAngle'] * M_PI/180;
$c = cos($angle);
$s = sin($angle);
switch($tpl['_rotationAngle']) {
case -90:
$tx = -$tpl['box']['lly'];
@ -419,16 +419,16 @@ class FPDI extends FPDF_TPL
$tx = -$tpl['x'] * 2;
$ty = $tpl['y'] * 2;
}
$tx *= $this->k;
$ty *= $this->k;
if ($c != 1 || $s != 0 || $tx != 0 || $ty != 0) {
$this->_out(sprintf('/Matrix [%.5F %.5F %.5F %.5F %.5F %.5F]',
$c, $s, -$s, $c, $tx, $ty
));
}
$this->_out('/Resources ');
if (isset($tpl['resources'])) {
@ -484,7 +484,7 @@ class FPDI extends FPDF_TPL
$this->_out('endobj');
$this->n = $newN; // TCPDF: reset to new "n"
}
$this->_putimportedobjects();
}
@ -509,7 +509,7 @@ class FPDI extends FPDF_TPL
$this->_out($objId . ' 0 obj');
$this->_currentObjId = $objId; // for later use with encryption
}
return $objId;
}
@ -525,7 +525,7 @@ class FPDI extends FPDF_TPL
if (is_subclass_of($this, 'TCPDF')) {
parent::_prepareValue($value);
}
switch ($value[0]) {
case pdf_parser::TYPE_TOKEN:
@ -539,7 +539,7 @@ class FPDI extends FPDF_TPL
$this->_straightOut($value[1] . ' ');
}
break;
case pdf_parser::TYPE_ARRAY:
// An array. Output the proper
@ -600,7 +600,7 @@ class FPDI extends FPDF_TPL
$this->_out($value[2][1]);
$this->_straightOut("endstream");
break;
case pdf_parser::TYPE_HEX:
$this->_straightOut('<' . $value[1] . '>');
break;
@ -608,7 +608,7 @@ class FPDI extends FPDF_TPL
case pdf_parser::TYPE_BOOLEAN:
$this->_straightOut($value[1] ? 'true ' : 'false ');
break;
case pdf_parser::TYPE_NULL:
// The null object.
@ -616,8 +616,8 @@ class FPDI extends FPDF_TPL
break;
}
}
/**
* Modified _out() method so not each call will add a newline to the output.
*/
@ -664,7 +664,7 @@ class FPDI extends FPDF_TPL
parent::_enddoc();
$this->_closeParsers();
}
/**
* Close all files opened by parsers.
*
@ -679,7 +679,7 @@ class FPDI extends FPDF_TPL
return false;
}
/**
* Removes cycled references and closes the file handles of the parser objects.
*/

View File

@ -32,35 +32,35 @@ class fpdi_pdf_parser extends pdf_parser
* @var array
*/
protected $_pages;
/**
* Page count
*
* @var integer
*/
protected $_pageCount;
/**
* Current page number
*
* @var integer
*/
public $pageNo;
/**
* PDF version of imported document
*
* @var string
*/
public $_pdfVersion;
/**
* Available BoxTypes
*
* @var array
*/
public $availableBoxes = array('/MediaBox', '/CropBox', '/BleedBox', '/TrimBox', '/ArtBox');
/**
* The constructor.
*
@ -75,11 +75,11 @@ class fpdi_pdf_parser extends pdf_parser
// Read pages
$this->_readPages($pages, $this->_pages);
// count pages;
$this->_pageCount = count($this->_pages);
}
/**
* Get page count from source file.
*
@ -106,7 +106,7 @@ class fpdi_pdf_parser extends pdf_parser
$this->pageNo = $pageNo;
}
/**
* Get page-resources from current page
*
@ -116,7 +116,7 @@ class fpdi_pdf_parser extends pdf_parser
{
return $this->_getPageResources($this->_pages[$this->pageNo]);
}
/**
* Get page-resources from a /Page dictionary.
*
@ -158,14 +158,14 @@ class fpdi_pdf_parser extends pdf_parser
public function getContent()
{
$buffer = '';
if (isset($this->_pages[$this->pageNo][1][1]['/Contents'])) {
$contents = $this->_getPageContent($this->_pages[$this->pageNo][1][1]['/Contents']);
foreach ($contents AS $tmpContent) {
$buffer .= $this->_unFilterStream($tmpContent) . ' ';
}
}
return $buffer;
}
@ -178,7 +178,7 @@ class fpdi_pdf_parser extends pdf_parser
protected function _getPageContent($contentRef)
{
$contents = array();
if ($contentRef[0] == pdf_parser::TYPE_OBJREF) {
$content = $this->resolveObject($contentRef);
if ($content[1][0] == pdf_parser::TYPE_ARRAY) {
@ -213,12 +213,12 @@ class fpdi_pdf_parser extends pdf_parser
if (isset($page[1][1][$boxIndex])) {
$box = $page[1][1][$boxIndex];
}
if (!is_null($box) && $box[0] == pdf_parser::TYPE_OBJREF) {
$tmp_box = $this->resolveObject($box);
$box = $tmp_box[1];
}
if (!is_null($box) && $box[0] == pdf_parser::TYPE_ARRAY) {
$b = $box[1];
return array(
@ -240,7 +240,7 @@ class fpdi_pdf_parser extends pdf_parser
/**
* Get all page boundary boxes by page number
*
*
* @param int $pageNo The page number
* @param float $k Scale factor from user space units to points
* @return array
@ -254,7 +254,7 @@ class fpdi_pdf_parser extends pdf_parser
return $this->_getPageBoxes($this->_pages[$pageNo - 1], $k);
}
/**
* Get all boxes from /Page dictionary
*

View File

@ -657,7 +657,7 @@
return str_replace(array('/','\\'), '/', $path);
}
}
if ( !function_exists('normalize_path_to_os')) {
function normalize_path_to_os($path) {
return str_replace(array('/','\\'), DIRECTORY_SEPARATOR, $path);

View File

@ -28,7 +28,7 @@
Mark J Crane <markjcrane@fusionpbx.com>
//-----------------------------------------------------------------------------------
3rd Party Licenses
3rd Party Licenses
//-----------------------------------------------------------------------------------
FreeSWITCH

View File

@ -184,7 +184,7 @@ if ($db_type == "mysql") {
//required for mysql_real_escape_string
if (function_exists(mysql_connect)) {
$mysql_connection = @mysql_connect($db_host, $db_username, $db_password);
//$mysql_connection = mysqli_connect($db_host, $db_username, $db_password,$db_name) or die("Error " . mysqli_error($link));
//$mysql_connection = mysqli_connect($db_host, $db_username, $db_password,$db_name) or die("Error " . mysqli_error($link));
}
//mysql pdo connection
if (strlen($db_host) == 0 && strlen($db_port) == 0) {

View File

@ -65,5 +65,5 @@ require "resources/require.php";
catch (PDOException $e) {
echo 'Connection failed: ' . $e->getMessage();
}
?>

View File

@ -147,7 +147,7 @@ such a program is covered only if its contents constitute a work based
on the Library (independent of the use of the Library in a tool for
writing it). Whether that is true depends on what the Library does
and what the program that uses the Library does.
1. You may copy and distribute verbatim copies of the Library's
complete source code as you receive it, in any medium, provided that
you conspicuously and appropriately publish on each copy an

View File

@ -6,20 +6,20 @@
$PHPMAILER_LANG['provide_address'] = 'Er moet tenmiste één ontvanger e-mailadres opgegeven worden.';//You must provide at least one recipient email address.
$PHPMAILER_LANG['mailer_not_supported'] = ' mailer wordt niet ondersteund.';// mailer is not supported.
$PHPMAILER_LANG['execute'] = 'Kon niet uitvoeren: ';//Could not execute:
$PHPMAILER_LANG['execute'] = 'Kon niet uitvoeren: ';//Could not execute:
$PHPMAILER_LANG['instantiate'] = 'Kon mailfunctie niet initialiseren.';//Could not instantiate mail function.
$PHPMAILER_LANG['authenticate'] = 'SMTP-fout: authenticatie mislukt.';//SMTP Error: Could not authenticate.
$PHPMAILER_LANG['from_failed'] = 'Het volgende afzendersadres is mislukt: ';//The following From address failed:
$PHPMAILER_LANG['recipients_failed'] = 'SMTP-fout: de volgende ontvangers zijn mislukt: ';//SMTP Error: The following recipients failed:
$PHPMAILER_LANG['from_failed'] = 'Het volgende afzendersadres is mislukt: ';//The following From address failed:
$PHPMAILER_LANG['recipients_failed'] = 'SMTP-fout: de volgende ontvangers zijn mislukt: ';//SMTP Error: The following recipients failed:
$PHPMAILER_LANG['data_not_accepted'] = 'SMTP-fout: data niet geaccepteerd.';//SMTP Error: Data not accepted.
$PHPMAILER_LANG['connect_host'] = 'SMTP-fout: kon niet verbinden met SMTP-host.';//SMTP Error: Could not connect to SMTP host.
$PHPMAILER_LANG['file_access'] = 'Kreeg geen toegang tot bestand: ';//Could not access file:
$PHPMAILER_LANG['file_open'] = 'Bestandsfout: kon bestand niet openen: ';//File Error: Could not open file:
$PHPMAILER_LANG['encoding'] = 'Onbekende codering: ';//Unknown encoding:
$PHPMAILER_LANG['signing'] = 'Signeerfout: ';//Signing Error:
$PHPMAILER_LANG['smtp_error'] = 'SMTP-serverfout: ';//SMTP server error:
$PHPMAILER_LANG['file_access'] = 'Kreeg geen toegang tot bestand: ';//Could not access file:
$PHPMAILER_LANG['file_open'] = 'Bestandsfout: kon bestand niet openen: ';//File Error: Could not open file:
$PHPMAILER_LANG['encoding'] = 'Onbekende codering: ';//Unknown encoding:
$PHPMAILER_LANG['signing'] = 'Signeerfout: ';//Signing Error:
$PHPMAILER_LANG['smtp_error'] = 'SMTP-serverfout: ';//SMTP server error:
$PHPMAILER_LANG['empty_message'] = 'Berichttekst is leeg';//Message body empty
$PHPMAILER_LANG['invalid_address'] = 'Ongeldig adres';//Invalid address
$PHPMAILER_LANG['variable_set'] = 'Kan de volgende variablen niet instellen of resetten: ';//Cannot set or reset variable:
$PHPMAILER_LANG['variable_set'] = 'Kan de volgende variablen niet instellen of resetten: ';//Cannot set or reset variable:
?>

View File

@ -49,7 +49,7 @@
$parameters=array(
'File'=>$message_file,
/* Read a message from a string instead of a file */
/* 'Data'=>'My message data string', */

View File

@ -107,7 +107,7 @@ function recaptcha_get_html ($pubkey, $error = null, $use_ssl = false)
require_once "resources/footer.php";
exit;
}
if ($use_ssl) {
$server = RECAPTCHA_API_SECURE_SERVER;
} else {
@ -153,7 +153,7 @@ function recaptcha_check_answer ($privkey, $remoteip, $challenge, $response, $ex
if ($remoteip == null || $remoteip == '') {
die ("For security reasons, you must pass the remote ip to reCAPTCHA");
}
//discard spam submissions
if ($challenge == null || strlen($challenge) == 0 || $response == null || strlen($response) == 0) {
$recaptcha_response = new ReCaptchaResponse();
@ -208,7 +208,7 @@ function _recaptcha_aes_encrypt($val,$ky) {
if (! function_exists ("mcrypt_encrypt")) {
die ("To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed.");
}
$mode=MCRYPT_MODE_CBC;
$mode=MCRYPT_MODE_CBC;
$enc=MCRYPT_RIJNDAEL_128;
$val=_recaptcha_aes_pad($val);
return mcrypt_encrypt($enc, $ky, $val, $mode, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");
@ -224,11 +224,11 @@ function recaptcha_mailhide_url($pubkey, $privkey, $email) {
die ("To use reCAPTCHA Mailhide, you have to sign up for a public and private key, " .
"you can do so at <a href='http://www.google.com/recaptcha/mailhide/apikey'>http://www.google.com/recaptcha/mailhide/apikey</a>");
}
$ky = pack('H*', $privkey);
$cryptmail = _recaptcha_aes_encrypt ($email, $ky);
return "http://www.google.com/recaptcha/mailhide/d?k=" . $pubkey . "&c=" . _recaptcha_mailhide_urlbase64 ($cryptmail);
}
@ -259,7 +259,7 @@ function _recaptcha_mailhide_email_parts ($email) {
function recaptcha_mailhide_html($pubkey, $privkey, $email) {
$emailparts = _recaptcha_mailhide_email_parts ($email);
$url = recaptcha_mailhide_url ($pubkey, $privkey, $email);
return htmlentities($emailparts[0]) . "<a href='" . htmlentities ($url) .
"' onclick=\"window.open('" . htmlentities ($url) . "', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;\" title=\"Reveal this e-mail address\">...</a>@" . htmlentities ($emailparts [1]);

View File

@ -489,7 +489,7 @@ function save_var_xml() {
if (strlen($row["var_description"]) > 0) {
$xml .= "<!-- ".base64_decode($row['var_description'])." -->\n";
}
}
}
if (strlen($row['var_hostname']) == 0) {
$xml .= "<X-PRE-PROCESS cmd=\"set\" data=\"".$row['var_name']."=".$row['var_value']."\"/>\n";
} elseif ($row['var_hostname'] == $hostname) {
@ -1279,7 +1279,7 @@ if (!function_exists('switch_conf_xml')) {
$secure_path = path_join($_SERVER["DOCUMENT_ROOT"], PROJECT_PATH, 'secure');
$v_mail_bat = path_join($secure_path, 'mailto.bat');
$v_mail_cmd = '@' .
$v_mail_cmd = '@' .
'"' . str_replace('/', '\\', path_join($bindir, 'php.exe')) . '" ' .
'"' . str_replace('/', '\\', path_join($secure_path, 'v_mailto.php')) . '" ';

View File

@ -169,17 +169,17 @@ tinyMCE_GZ.init({
//error handling
}
}
function ajaxLoad(id, txt) {
var inst = tinyMCE.getInstanceById(id);
// Do you ajax call here
inst.setHTML(txt);
}
function ajaxSave() {
var inst = tinyMCE.getInstanceById('content');
// Do you ajax call here
alert(inst.getHTML());
}