Compare commits

...

15 Commits

Author SHA1 Message Date
Michael RICOIS
fea841d4ec Correction après mise en prod 2009-08-24 07:15:38 +00:00
Michael RICOIS
c768e15d47 Préparation pour mise en production 2009-08-21 16:14:21 +00:00
Michael RICOIS
28dd8a08bd Merge 2009-08-19 11:48:46 +00:00
Michael RICOIS
f8dc716496 Preparation pour mise en production 2009-08-07 15:18:40 +00:00
Michael RICOIS
f4ca1f2007 Préparation mise en production 2009-07-23 15:09:21 +00:00
Michael RICOIS
a70eeb9a16 Préparation pour mise en production 2009-07-17 15:15:31 +00:00
Michael RICOIS
02704853b3 Préparation pour mise en production 2009-07-10 08:37:25 +00:00
Michael RICOIS
1b5c664b6b Merge depuis trunk 2009-07-07 15:24:35 +00:00
Michael RICOIS
fa5c253d0f Correction fonts pour le serveur de prod 2009-07-02 17:50:21 +00:00
Michael RICOIS
daa991d394 Preparation pour mise en production 2009-07-02 13:39:55 +00:00
Michael RICOIS
abd67336b1 Merge : Ajout zone nom2 2009-06-19 16:30:38 +00:00
Michael RICOIS
b6db5b17ef Merge depuis trunk 2009-06-19 08:59:00 +00:00
Michael RICOIS
33bde4f65f Simplification du html pour l'export pdf et supression du footer 2009-06-17 07:10:40 +00:00
Michael RICOIS
e2dbb455d6 Merge 2009-06-16 17:13:16 +00:00
Michael RICOIS
8a918092bc Merge 2009-06-16 14:45:40 +00:00

23
www/cdinfo.php Normal file
View File

@ -0,0 +1,23 @@
<html>
<body topmargin="0" leftmargin="0" rightmargin="0" marginwidth="0" marginheight="0">
<div style="margin:5;">
<div style="font-family:verdana; font-weight:bold; font-size:18pt;">
ChartDirector Information
</div>
<hr color="#000080">
<div style="font-family:verdana; font-size:10pt;">
<?php
ini_set('display_errors', 1);
error_reporting(E_ALL);
require_once("../includes/phpchartdir/phpchartdir.php");
?>
<ul style="margin-top:0; list-style:square; font-family:verdana; font-size:10pt;">
<li>Description : <?php echo getDescription() ?><br><br>
<li>Version : <?php echo (getVersion() & 0x7f000000) / 0x1000000 ?>.<?php echo (getVersion() & 0xff0000) / 0x10000 ?>.<?php echo getVersion() & 0xffff ?><br><br>
<li>Copyright : <?php echo getCopyright() ?><br><br>
<li>Boot Log : <br><ul><li><?php echo str_replace("\n", "<li>", getBootLog()) ?></ul><br>
<li>Font Loading Test : <br><ul><li><?php echo str_replace("\n", "<li>", libgTTFTest())?></ul>
</ul>
</div>
</body>
</html>