|
From: <be...@us...> - 2014-06-16 00:31:12
|
Revision: 12605
http://sourceforge.net/p/xoops/svn/12605
Author: beckmi
Date: 2014-06-16 00:31:04 +0000 (Mon, 16 Jun 2014)
Log Message:
-----------
removing backup files
Removed Paths:
-------------
XoopsModules/modulepacks/x257basicmodulepack/trunk/xoops_lib/vendor/tcpdf/config/tcpdf_config 0.php
XoopsModules/modulepacks/x257basicmodulepack/trunk/xoops_lib/vendor/tcpdf/config/tcpdf_config.php.bak
XoopsModules/modulepacks/x257basicmodulepack/trunk/xoops_lib/vendor/tcpdf/config/tcpdf_config_6_0_082.php
Deleted: XoopsModules/modulepacks/x257basicmodulepack/trunk/xoops_lib/vendor/tcpdf/config/tcpdf_config 0.php
===================================================================
--- XoopsModules/modulepacks/x257basicmodulepack/trunk/xoops_lib/vendor/tcpdf/config/tcpdf_config 0.php 2014-06-16 00:28:33 UTC (rev 12604)
+++ XoopsModules/modulepacks/x257basicmodulepack/trunk/xoops_lib/vendor/tcpdf/config/tcpdf_config 0.php 2014-06-16 00:31:04 UTC (rev 12605)
@@ -1,99 +0,0 @@
-<?php
-/*******************************************************************************
- * Software: TCPDF for Xoops *
- * Version: 1.06 *
- * Date: 2012-10-04 *
- * Author: montuy337513 (frxoops.org) alias Black_beard (xoops.org) *
- * License: Freeware *
- * *
- * You may use and modify this software as you wish. *
- *******************************************************************************/
-// Original version :
-//============================================================+
-// File name : tcpdf.php
-// Version : 5.9.193
-// Begin : 2002-08-03
-// Last Update : 2012-09-25
-// Author : Nicola Asuni - Tecnick.com LTD - Manor Coach House, Church Hill, Aldershot, Hants, GU12 4RQ, UK - www.tecnick.com - in...@te...
-// License : http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT GNU-LGPLv3
-// -------------------------------------------------------------------
-if (!defined('XOOPS_ROOT_PATH')) {
- die("XOOPS root path not defined");
-}
-define ('FONT_DEFAULT', 'dejavusans'); // Font a utiliser par défaut
-$la_font = '';
-$tableau_font = array(
- 'chinese' => 'cid0cs',
- 'schinese' => 'cid0cs',
- 'tchinese' => 'cid0ct',
- 'japanese' => 'cid0jp',
- 'korean' => 'cid0kr'
- );
-if (!defined('K_TCPDF_EXTERNAL_CONFIG')) {
- define ('K_PATH_MAIN', XOOPS_ROOT_PATH.'/Frameworks/tcpdf/'); //panwac
- define ('K_PATH_URL', XOOPS_URL.'/Frameworks/tcpdf/');
- if (!array_key_exists($xoopsConfig['language'],$tableau_font)) {
- define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/');
- $la_font = FONT_DEFAULT;
- } else {
- if (is_file(XOOPS_ROOT_PATH.'/language/'.$xoopsConfig['language'].'/fonts/'. $tableau_font[$xoopsConfig['language']].'.php')) {
- define ('K_PATH_FONTS', XOOPS_ROOT_PATH.'/language/'.$xoopsConfig['language'].'/fonts/');
- $la_font = $tableau_font[$xoopsConfig['language']];
- } elseif(is_file(K_PATH_MAIN.'fonts/'.$tableau_font[$xoopsConfig['language']].'.php')) {
- define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/');
- $la_font = $tableau_font[$xoopsConfig['language']];
- } else {
- define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/');
- $la_font = FONT_DEFAULT;
- }
- }
- define ('K_PATH_CACHE', K_PATH_MAIN.'cache/');
- define ('K_PATH_URL_CACHE', K_PATH_URL.'cache/');
- define ('K_PATH_IMAGES', K_PATH_MAIN.'images/');
- define ('K_BLANK_IMAGE', K_PATH_IMAGES.'_blank.png');
- define ('PDF_PAGE_FORMAT', 'A4');
- define ('PDF_PAGE_ORIENTATION', 'P'); // P -> portrait ; L -> Landscape
- define ('PDF_CREATOR', 'TCPDF for Xoops - Version 1.05');
- define ('PDF_AUTHOR', $pdf_data['author'].'<br />');
- define ('PDF_HEADER_TITLE', $pdf_data['title'].'<br />');
- define ('PDF_HEADER_STRING', '');
- define ('PDF_HEADER_LOGO', 'logo.png');
- define ('PDF_HEADER_LOGO_WIDTH', 30); // header logo image width [mm]
- define ('PDF_UNIT', 'mm'); //document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch]
- define ('PDF_MARGIN_HEADER', 5);
- define ('PDF_MARGIN_FOOTER', 10);
- define ('PDF_MARGIN_TOP', 27);
- define ('PDF_MARGIN_BOTTOM', 25);
- define ('PDF_MARGIN_LEFT', 15);
- define ('PDF_MARGIN_RIGHT', 15);
- define ('PDF_FONT_NAME_SLOGAN', $la_font);
- define ('PDF_FONT_STYLE_SLOGAN', 'B');
- define ('PDF_FONT_SIZE_SLOGAN', '8');
- define ('PDF_FONT_NAME_TITLE', $la_font);
- define ('PDF_FONT_STYLE_TITLE', 'B');
- define ('PDF_FONT_SIZE_TITLE', '12');
- define ('PDF_FONT_NAME_SUB', $la_font);
- define ('PDF_FONT_STYLE_SUB', 'I');
- define ('PDF_FONT_SIZE_SUB', '8');
- define ('PDF_FONT_NAME_SUBSUB', $la_font);
- define ('PDF_FONT_STYLE_SUBSUB', '');
- define ('PDF_FONT_SIZE_SUBSUB', '6');
- define ('PDF_FONT_NAME_MAIN', $la_font);
- define ('PDF_FONT_SIZE_MAIN', 10);
- define ('PDF_FONT_STYLE_MAIN','');
- define ('PDF_FONT_NAME_DATA', $la_font);
- define ('PDF_FONT_STYLE_DATA','I');
- define ('PDF_FONT_SIZE_DATA', 8);
- define ('PDF_FONT_MONOSPACED', $la_font);
- define ('PDF_IMAGE_SCALE_RATIO', 1.25);
- define('HEAD_MAGNIFICATION', 1.1);
- define('K_CELL_HEIGHT_RATIO', 1.25);
- define('K_TITLE_MAGNIFICATION', 1.3);
- define('K_SMALL_RATIO', 0.66);
- define('K_XSMALL_RATIO', 0.5);
- define('K_THAI_TOPCHARS', true);
- define('K_TCPDF_CALLS_IN_HTML', true);
- define('NEWS_PDF_AUTHOR', _POSTEDBY);
- define('NEWS_PDF_DATE', _MD_POSTEDON);
-}
-
Deleted: XoopsModules/modulepacks/x257basicmodulepack/trunk/xoops_lib/vendor/tcpdf/config/tcpdf_config.php.bak
===================================================================
--- XoopsModules/modulepacks/x257basicmodulepack/trunk/xoops_lib/vendor/tcpdf/config/tcpdf_config.php.bak 2014-06-16 00:28:33 UTC (rev 12604)
+++ XoopsModules/modulepacks/x257basicmodulepack/trunk/xoops_lib/vendor/tcpdf/config/tcpdf_config.php.bak 2014-06-16 00:31:04 UTC (rev 12605)
@@ -1,270 +0,0 @@
-<?php
-/*******************************************************************************
- * Software: TCPDF for Xoops *
- * Version: 1.07 *
- * Date: 2014-6-15 *
- * Author: montuy337513 (frxoops.org) alias Black_beard (xoops.org) *
- * License: Freeware *
- * *
- * You may use and modify this software as you wish. *
- *******************************************************************************/
-// Original version :
-//============================================================+
-// File name : tcpdf_config.php
-// Version : 6.0.084
-// Begin : 2004-06-13
-// Last Update : 2014-06-15
-//
-// Description : Configuration file for TCPDF.
-// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - in...@te...
-// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
-// -------------------------------------------------------------------
-// Copyright (C) 2004-2014 Nicola Asuni - Tecnick.com LTD
-//
-// This file is part of TCPDF software library.
-//
-// TCPDF is free software: you can redistribute it and/or modify it
-// under the terms of the GNU Lesser General Public License as
-// published by the Free Software Foundation, either version 3 of the
-// License, or (at your option) any later version.
-//
-// TCPDF is distributed in the hope that it will be useful, but
-// WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-// See the GNU Lesser General Public License for more details.
-//
-// You should have received a copy of the GNU Lesser General Public License
-// along with TCPDF. If not, see <http://www.gnu.org/licenses/>.
-//
-// See LICENSE.TXT file for more information.
-//============================================================+
-
-if (!defined('XOOPS_ROOT_PATH')) {
- die("XOOPS root path not defined");
-}
-
-define ('FONT_DEFAULT', 'dejavusans'); // Font a utiliser par défaut
-$la_font = '';
-$tableau_font = array(
- 'chinese' => 'cid0cs',
- 'schinese' => 'cid0cs',
- 'tchinese' => 'cid0ct',
- 'japanese' => 'cid0jp',
- 'korean' => 'cid0kr'
- );
-
-
-// IMPORTANT:
-// If you define the constant K_TCPDF_EXTERNAL_CONFIG, all the following settings will be ignored.
-// If you use the tcpdf_autoconfig.php, then you can overwrite some values here.
-if (!defined('K_TCPDF_EXTERNAL_CONFIG')) {
- define ('K_PATH_MAIN', XOOPS_PATH.'/vendor/tcpdf/'); //panwac
-// define ('K_PATH_URL', XOOPS_URL.'/Frameworks/tcpdf/');
- if (!array_key_exists($xoopsConfig['language'],$tableau_font)) {
- define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/');
- $la_font = FONT_DEFAULT;
- } else {
- if (is_file(XOOPS_ROOT_PATH.'/language/'.$xoopsConfig['language'].'/fonts/'. $tableau_font[$xoopsConfig['language']].'.php')) {
- define ('K_PATH_FONTS', XOOPS_ROOT_PATH.'/language/'.$xoopsConfig['language'].'/fonts/');
- $la_font = $tableau_font[$xoopsConfig['language']];
- } elseif(is_file(K_PATH_MAIN.'fonts/'.$tableau_font[$xoopsConfig['language']].'.php')) {
- define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/');
- $la_font = $tableau_font[$xoopsConfig['language']];
- } else {
- define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/');
- $la_font = FONT_DEFAULT;
- }
- }
-
-/**
- * URL path to tcpdf installation folder (http://localhost/tcpdf/).
- * By default it is automatically set but you can also set it as a fixed string to improve performances.
- */
-//define ('K_PATH_URL', '');
-
-/**
- * Path for PDF fonts.
- * By default it is automatically set but you can also set it as a fixed string to improve performances.
- */
-//define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/');
-
-/**
- * Default images directory.
- * By default it is automatically set but you can also set it as a fixed string to improve performances.
- */
-//define ('K_PATH_IMAGES', '');
-
-/**
- * Deafult image logo used be the default Header() method.
- * Please set here your own logo or an empty string to disable it.
- */
-//define ('PDF_HEADER_LOGO', '');
-
-/**
- * Header logo image width in user units.
- */
-//define ('PDF_HEADER_LOGO_WIDTH', 0);
-
-/**
- * Cache directory for temporary files (full path).
- */
-define ('K_PATH_CACHE', XOOPS_VAR_PATH .'/caches/xoops_cache/');
-/**
- * Generic name for a blank image.
- */
-define ('K_BLANK_IMAGE', '_blank.png');
-
-/**
- * Page format.
- */
- define ('PDF_PAGE_FORMAT', 'A4');
-
-/**
- * Page orientation (P=portrait, L=landscape).
- */
- define ('PDF_PAGE_ORIENTATION', 'P'); // P -> portrait ; L -> Landscape
-
-/**
- * Document creator.
- */
- define ('PDF_CREATOR', 'TCPDF for Xoops - Version 1.07');
-
-/**
- * Document author.
- */
- define ('PDF_AUTHOR', $pdf_data['author'].'<br />');
-
-/**
- * Header title.
- */
- define ('PDF_HEADER_TITLE', $pdf_data['title'].'<br />');
-
-/**
- * Header description string.
- */
- define ('PDF_HEADER_STRING', '');
- /**
- * image logo
- */
- define ('PDF_HEADER_LOGO', 'logo.png');
-
- /**
- * header logo image width [mm]
- */
-// define ('PDF_HEADER_LOGO_WIDTH', 30); // header logo image width [mm]
-/**
- * Document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch].
- */
- define ('PDF_UNIT', 'mm'); //document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch]
-/**
- * Header margin.
- */
-define ('PDF_MARGIN_HEADER', 5);
-
-/**
- * Footer margin.
- */
-define ('PDF_MARGIN_FOOTER', 10);
-
-/**
- * Top margin.
- */
-define ('PDF_MARGIN_TOP', 27);
-
-/**
- * Bottom margin.
- */
-define ('PDF_MARGIN_BOTTOM', 25);
-
-/**
- * Left margin.
- */
-define ('PDF_MARGIN_LEFT', 15);
-
-/**
- * Right margin.
- */
-define ('PDF_MARGIN_RIGHT', 15);
- define ('PDF_FONT_NAME_SLOGAN', $la_font);
- define ('PDF_FONT_STYLE_SLOGAN', 'B');
- define ('PDF_FONT_SIZE_SLOGAN', '8');
- define ('PDF_FONT_NAME_TITLE', $la_font);
- define ('PDF_FONT_STYLE_TITLE', 'B');
- define ('PDF_FONT_SIZE_TITLE', '12');
- define ('PDF_FONT_NAME_SUB', $la_font);
- define ('PDF_FONT_STYLE_SUB', 'I');
- define ('PDF_FONT_SIZE_SUB', '8');
- define ('PDF_FONT_NAME_SUBSUB', $la_font);
- define ('PDF_FONT_STYLE_SUBSUB', '');
- define ('PDF_FONT_SIZE_SUBSUB', '6');
-/**
- * Default main font name.
- */
- define ('PDF_FONT_NAME_MAIN', $la_font);
-
-/**
- * Default main font size.
- */
- define ('PDF_FONT_SIZE_MAIN', 10);
- define ('PDF_FONT_STYLE_MAIN','');
-
-/**
- * Default data font name.
- */
- define ('PDF_FONT_NAME_DATA', $la_font);
- define ('PDF_FONT_STYLE_DATA','I');
-
-/**
- * Ratio used to adjust the conversion of pixels to user units.
- */
- define ('PDF_FONT_SIZE_DATA', 8);
-
-/**
- * Default monospaced font name.
- */
- define ('PDF_FONT_MONOSPACED', $la_font);
-
-/**
- * Ratio used to adjust the conversion of pixels to user units.
- */
- define ('PDF_IMAGE_SCALE_RATIO', 1.25);
-
-/**
- * Magnification factor for titles.
- */
- define('HEAD_MAGNIFICATION', 1.1);
-
-/**
- * Height of cell respect font height.
- */
- define('K_CELL_HEIGHT_RATIO', 1.25);
-
-/**
- * Title magnification respect main font size.
- */
- define('K_TITLE_MAGNIFICATION', 1.3);
-
-/**
- * Reduction factor for small font.
- */
- define('K_SMALL_RATIO', 0.66);
- define('K_XSMALL_RATIO', 0.5);
-
-/**
- * Set to true to enable the special procedure used to avoid the overlappind of symbols on Thai language.
- */
- define('K_THAI_TOPCHARS', true);
-
-/**
- * If true allows to call TCPDF methods using HTML syntax
- * IMPORTANT: For security reason, disable this feature if you are printing user HTML content.
- */
- define('K_TCPDF_CALLS_IN_HTML', true);
-
-/**
- * If true and PHP version is greater than 5, then the Error() method throw new exception instead of terminating the execution.
- */
- define('K_TCPDF_THROW_EXCEPTION_ERROR', false);
- define('NEWS_PDF_AUTHOR', _POSTEDBY);
- define('NEWS_PDF_DATE', _MD_POSTEDON);
-}
Deleted: XoopsModules/modulepacks/x257basicmodulepack/trunk/xoops_lib/vendor/tcpdf/config/tcpdf_config_6_0_082.php
===================================================================
--- XoopsModules/modulepacks/x257basicmodulepack/trunk/xoops_lib/vendor/tcpdf/config/tcpdf_config_6_0_082.php 2014-06-16 00:28:33 UTC (rev 12604)
+++ XoopsModules/modulepacks/x257basicmodulepack/trunk/xoops_lib/vendor/tcpdf/config/tcpdf_config_6_0_082.php 2014-06-16 00:31:04 UTC (rev 12605)
@@ -1,222 +0,0 @@
-<?php
-//============================================================+
-// File name : tcpdf_config.php
-// Begin : 2004-06-11
-// Last Update : 2014-01-25
-//
-// Description : Configuration file for TCPDF.
-// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - in...@te...
-// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
-// -------------------------------------------------------------------
-// Copyright (C) 2004-2014 Nicola Asuni - Tecnick.com LTD
-//
-// This file is part of TCPDF software library.
-//
-// TCPDF is free software: you can redistribute it and/or modify it
-// under the terms of the GNU Lesser General Public License as
-// published by the Free Software Foundation, either version 3 of the
-// License, or (at your option) any later version.
-//
-// TCPDF is distributed in the hope that it will be useful, but
-// WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-// See the GNU Lesser General Public License for more details.
-//
-// You should have received a copy of the GNU Lesser General Public License
-// along with TCPDF. If not, see <http://www.gnu.org/licenses/>.
-//
-// See LICENSE.TXT file for more information.
-//============================================================+
-
-/**
- * Configuration file for TCPDF.
- * @author Nicola Asuni
- * @package com.tecnick.tcpdf
- * @version 4.9.005
- * @since 2004-10-27
- */
-
-// IMPORTANT:
-// If you define the constant K_TCPDF_EXTERNAL_CONFIG, all the following settings will be ignored.
-// If you use the tcpdf_autoconfig.php, then you can overwrite some values here.
-
-
-/**
- * Installation path (/var/www/tcpdf/).
- * By default it is automatically calculated but you can also set it as a fixed string to improve performances.
- */
-//define ('K_PATH_MAIN', '');
-
-/**
- * URL path to tcpdf installation folder (http://localhost/tcpdf/).
- * By default it is automatically set but you can also set it as a fixed string to improve performances.
- */
-//define ('K_PATH_URL', '');
-
-/**
- * Path for PDF fonts.
- * By default it is automatically set but you can also set it as a fixed string to improve performances.
- */
-//define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/');
-
-/**
- * Default images directory.
- * By default it is automatically set but you can also set it as a fixed string to improve performances.
- */
-//define ('K_PATH_IMAGES', '');
-
-/**
- * Deafult image logo used be the default Header() method.
- * Please set here your own logo or an empty string to disable it.
- */
-//define ('PDF_HEADER_LOGO', '');
-
-/**
- * Header logo image width in user units.
- */
-//define ('PDF_HEADER_LOGO_WIDTH', 0);
-
-/**
- * Cache directory for temporary files (full path).
- */
-//define ('K_PATH_CACHE', '/tmp/');
-
-/**
- * Generic name for a blank image.
- */
-define ('K_BLANK_IMAGE', '_blank.png');
-
-/**
- * Page format.
- */
-define ('PDF_PAGE_FORMAT', 'A4');
-
-/**
- * Page orientation (P=portrait, L=landscape).
- */
-define ('PDF_PAGE_ORIENTATION', 'P');
-
-/**
- * Document creator.
- */
-define ('PDF_CREATOR', 'TCPDF');
-
-/**
- * Document author.
- */
-define ('PDF_AUTHOR', 'TCPDF');
-
-/**
- * Header title.
- */
-define ('PDF_HEADER_TITLE', 'TCPDF Example');
-
-/**
- * Header description string.
- */
-define ('PDF_HEADER_STRING', "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org");
-
-/**
- * Document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch].
- */
-define ('PDF_UNIT', 'mm');
-
-/**
- * Header margin.
- */
-define ('PDF_MARGIN_HEADER', 5);
-
-/**
- * Footer margin.
- */
-define ('PDF_MARGIN_FOOTER', 10);
-
-/**
- * Top margin.
- */
-define ('PDF_MARGIN_TOP', 27);
-
-/**
- * Bottom margin.
- */
-define ('PDF_MARGIN_BOTTOM', 25);
-
-/**
- * Left margin.
- */
-define ('PDF_MARGIN_LEFT', 15);
-
-/**
- * Right margin.
- */
-define ('PDF_MARGIN_RIGHT', 15);
-
-/**
- * Default main font name.
- */
-define ('PDF_FONT_NAME_MAIN', 'helvetica');
-
-/**
- * Default main font size.
- */
-define ('PDF_FONT_SIZE_MAIN', 10);
-
-/**
- * Default data font name.
- */
-define ('PDF_FONT_NAME_DATA', 'helvetica');
-
-/**
- * Default data font size.
- */
-define ('PDF_FONT_SIZE_DATA', 8);
-
-/**
- * Default monospaced font name.
- */
-define ('PDF_FONT_MONOSPACED', 'courier');
-
-/**
- * Ratio used to adjust the conversion of pixels to user units.
- */
-define ('PDF_IMAGE_SCALE_RATIO', 1.25);
-
-/**
- * Magnification factor for titles.
- */
-define('HEAD_MAGNIFICATION', 1.1);
-
-/**
- * Height of cell respect font height.
- */
-define('K_CELL_HEIGHT_RATIO', 1.25);
-
-/**
- * Title magnification respect main font size.
- */
-define('K_TITLE_MAGNIFICATION', 1.3);
-
-/**
- * Reduction factor for small font.
- */
-define('K_SMALL_RATIO', 2/3);
-
-/**
- * Set to true to enable the special procedure used to avoid the overlappind of symbols on Thai language.
- */
-define('K_THAI_TOPCHARS', true);
-
-/**
- * If true allows to call TCPDF methods using HTML syntax
- * IMPORTANT: For security reason, disable this feature if you are printing user HTML content.
- */
-define('K_TCPDF_CALLS_IN_HTML', true);
-
-/**
- * If true and PHP version is greater than 5, then the Error() method throw new exception instead of terminating the execution.
- */
-define('K_TCPDF_THROW_EXCEPTION_ERROR', false);
-
-//============================================================+
-// END OF FILE
-//============================================================+
|