* Updated the FPDF library to the 1.5 revision...

* ... made it PHP3 and xhtml compliant...
* ... and applied coding standards.
This commit is contained in:
Loïc Chapeaux
2002-06-01 15:17:36 +00:00
parent 9837416508
commit 3060f40b9e
7 changed files with 2869 additions and 1458 deletions

View File

@@ -5,6 +5,13 @@ phpMyAdmin - Changelog
$Id$
$Source$
2002-05-28 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* db_details_structure.php3, lines 440-441; Documentation.html;
pdf_schema.php3; libraries/fpdf/*:
- updated the FPDF library to the 1.5 revision;
- rewrote it to make it PHP3 and xhtml compliant;
- coding standards.
2002-06-01 Alexander M. Turek <rabus@users.sourceforge.net>
* lang/indonesian.inc.php3: Updates, thanks to Rachim Tamsjadi.
* lang/italian.inc.php3: Updates, thanks again to

View File

@@ -1394,10 +1394,21 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
systems, too.<br />
If you encounter this bug together with another OS and/or MySQL version or
you know how to work around it, please post a message into
<a href="https://sourceforge.net/tracker/index.php?func=detail&amp;aid=540671&amp;group_id=23067&amp;atid=377408" target="_blank">
<a href="http://sourceforge.net/tracker/index.php?func=detail&amp;aid=540671&amp;group_id=23067&amp;atid=377408" target="_blank">
our bug tracker</a> at SourceForge.
</p>
<p>
<b>I can't run the "display relations" feature because the script seems
not to know the font face I'm using!</b>
<br />
The &quot;FPDF&quot; library we're using for this feature requires some
special files to use font faces.<br />
Please refers to the
<a href="http://www.fpdf.org/" target="_blank">FPDF manual</a> to build
these files.
</p>
<a name="faqconfig"></a>
<h3>[Configuration]</h3>
@@ -1912,7 +1923,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
<li>
put the modified files (tar'ed and gzip'ed) inside the patch tracker of
the
<a class="navigation" href="https://sourceforge.net/projects/phpmyadmin/" target="_blank">phpMyAdmin SourceForge account</a>.
<a class="navigation" href="http://sourceforge.net/projects/phpmyadmin/" target="_blank">phpMyAdmin SourceForge account</a>.
</li>
</ul>
<p>
@@ -2115,7 +2126,8 @@ code since version 2.1.0:
- Mike Beck &lt;mike.beck at ibmiller.de&gt; for his work on the Relation table
feature: automatic joint in QBE, links column in printview, Relation view.
- Maxime Delorme &lt;delorme.maxime at free.fr&gt; for the PDF schema output;
thanks also to Olivier Plathey for the fpdf library (www.fpdf.org).
thanks also to Olivier Plathey for the &quot;FPDF&quot; library
(see http://www.fpdf.org/).
And also to the following people who have contributed minor changes,

View File

@@ -437,8 +437,7 @@ echo ' ' . '&nbsp;<input type="submit" value="' . $strGo . '" />' . "\n";
<?php
// is this OK to check for 'class' support?
if (PMA_PHP_INT_VERSION >= 40000
&& (!empty($cfg['Server']['table_coords']))
if (!empty($cfg['Server']['table_coords'])
&& $num_tables > 0) {
?>
<!-- PDF schema -->

View File

@@ -1,3 +1,3 @@
The official site for fdpf is http://www.fpdf.org
The official site for fdpf is http://www.fpdf.org/
This directory contains some files from the fpdf 1.41 distribution.
This directory contains some files from the fpdf 1.5 distribution.

View File

@@ -1,6 +0,0 @@
H2 {color: #4000A0}
.st {font-weight: bold; color: #A02020}
A.demo {text-decoration: none; font-weight: bold; color: #0000CC}
A.demo:link {text-decoration: none; font-weight: bold; color: #0000CC}
A.demo:hover {text-decoration: none; font-weight: bold; color: #0000FF}
A.demo:active {text-decoration: none; font-weight: bold; color: #0000FF}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff