pview-php-commits Mailing List for Pview.php (Page 7)
Brought to you by:
vko
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(12) |
Jun
(60) |
Jul
(57) |
Aug
|
Sep
(26) |
Oct
|
Nov
(6) |
Dec
(4) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
|
Feb
(8) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Ville K. <vk...@us...> - 2001-06-07 11:19:01
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv3119 Modified Files: Pview.php pco.php Log Message: design fixes, adding CHANGES.. Index: Pview.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/Pview.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** Pview.php 2001/06/06 20:59:44 1.9 --- Pview.php 2001/06/07 11:18:59 1.10 *************** *** 50,55 **** include($config['Pview']['path']['template'] . '/thumb/thumb.inc'); $kuvaidnro++; $tr++; ! if (($tr == $config['Pview']['layout']['columns']) and ($maara != $prkl)) { ! echo("</tr><tr>\n"); $tr = 0; } --- 50,55 ---- include($config['Pview']['path']['template'] . '/thumb/thumb.inc'); $kuvaidnro++; $tr++; ! if (($tr == $config['Pview']['layout']['columns']) AND ($maara != $prkl)) { ! echo(" </tr>\n <tr>\n"); $tr = 0; } *************** *** 73,74 **** --- 73,76 ---- ?> + col "<?= $config['Pview']['layout']['columns'] ?>"<br> + row "<?= $config['Pview']['layout']['rows'] ?>" Index: pco.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/pco.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** pco.php 2001/06/06 20:53:55 1.1 --- pco.php 2001/06/07 11:18:59 1.2 *************** *** 28,54 **** } } ! ?> ! ! <form action="<?= $SCRIPT_NAME ?>" method="POST"> ! <input type="hidden" name="form_referer" value="<?= $GLOBALS["HTTP_REFERER"] ?>"> ! <table cellpadding="2" cellspacing="2" border="0"> ! <tr> ! <td>Columns in thumbnail view (min. 1, max. 9)</td> ! <td><input class="inputbox" type="text" name="form_columns" maxlength="1" size="1" value="<?= $Pviewphpcookie[columns] ?>"></td> ! </tr> ! <tr> ! <td>Rows in thumbnail view (0 = everything)</td> ! <td><input class="inputbox" type="text" name="form_rows" maxlength="2" size="1" value="<?= $Pviewphpcookie[rows] ?>"></td> ! <td> not working yet!</td> ! </tr> ! <tr> ! <td> </td> ! <td><input type="submit" value="Save"></td> ! </tr> ! </table> ! </form> ! ! <?php ! include($config['Pview']['path']['template'] . '/common-footer.inc'); --- 28,32 ---- } } ! include($config['Pview']['path']['template'] . '/pco/pco.inc'); include($config['Pview']['path']['template'] . '/common-footer.inc'); |
From: Ville K. <vk...@us...> - 2001-06-07 11:18:00
|
Update of /cvsroot/pview-php/Pview.php/templates/pco In directory usw-pr-cvs1:/tmp/cvs-serv3040/pco Log Message: Directory /cvsroot/pview-php/Pview.php/templates/pco added to the repository |
From: Ville K. <vk...@us...> - 2001-06-06 20:59:47
|
Update of /cvsroot/pview-php/Pview.php/config In directory usw-pr-cvs1:/tmp/cvs-serv12257/config Modified Files: config.php Log Message: forgot the default value for $config['Pview']['layout']['rows'] Index: config.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/config/config.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** config.php 2001/06/06 18:17:46 1.5 --- config.php 2001/06/06 20:59:44 1.6 *************** *** 17,21 **** # How many columns of images in thumbnail view ! $config['Pview']['layout']['columns'] = 3; # Pview.php version number, no need to change --- 17,24 ---- # How many columns of images in thumbnail view ! $config['Pview']['layout']['columns'] = '3'; ! ! # How many rows of images in thumbnail view ! $config['Pview']['layout']['rows'] = '0'; # Pview.php version number, no need to change |
From: Ville K. <vk...@us...> - 2001-06-06 20:59:46
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv12257 Modified Files: Pview.php Log Message: forgot the default value for $config['Pview']['layout']['rows'] Index: Pview.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/Pview.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** Pview.php 2001/06/06 20:53:55 1.8 --- Pview.php 2001/06/06 20:59:44 1.9 *************** *** 14,19 **** include_once('config/series.php'); ! if (isset($Pviewphpcookie[columns])) $config['Pview']['layout']['columns'] = $Pviewphpcookie[columns]; ! if (isset($Pviewphpcookie[rows])) $config['Pview']['layout']['rows'] = $Pviewphpcookie[rows]; include($config['Pview']['path']['template'] . '/common-header.inc'); --- 14,21 ---- include_once('config/series.php'); ! if (isset($Pviewphpcookie[columns])) ! $config['Pview']['layout']['columns'] = $Pviewphpcookie[columns]; ! if (isset($Pviewphpcookie[rows])) ! $config['Pview']['layout']['rows'] = $Pviewphpcookie[rows]; include($config['Pview']['path']['template'] . '/common-header.inc'); |
From: Ville K. <vk...@us...> - 2001-06-06 20:54:04
|
Update of /cvsroot/pview-php/Pview.php/templates/index In directory usw-pr-cvs1:/tmp/cvs-serv11037/templates/index Modified Files: footer.inc header.inc Log Message: adding first version of configuration script Index: footer.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/index/footer.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** footer.inc 2001/05/23 20:05:54 1.1 --- footer.inc 2001/06/06 20:53:55 1.2 *************** *** 0 **** --- 1,3 ---- + <tr> + <td> </td> + </tr> Index: header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/index/header.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** header.inc 2001/05/23 20:05:54 1.1 --- header.inc 2001/06/06 20:53:55 1.2 *************** *** 1,3 **** ! <table cellpadding="2" cellspacing="2" border="0"> <tr> <td colspan="9">We have following picture series:</td> --- 1,3 ---- ! <table cellpadding="1" cellspacing="1" border="0"> <tr> <td colspan="9">We have following picture series:</td> |
From: Ville K. <vk...@us...> - 2001-06-06 20:54:04
|
Update of /cvsroot/pview-php/Pview.php/templates In directory usw-pr-cvs1:/tmp/cvs-serv11037/templates Modified Files: common-footer.inc Log Message: adding first version of configuration script Index: common-footer.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/common-footer.inc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** common-footer.inc 2001/05/30 10:20:56 1.3 --- common-footer.inc 2001/06/06 20:53:55 1.4 *************** *** 2,6 **** <table width="100%" border="0"> <tr> ! <td height="50" align="center" class="pieni"><a href="http://pview-php.sf.net/">Pview.php <?= $config['Pview']['version'] ?></a></td> </tr> </table> --- 2,8 ---- <table width="100%" border="0"> <tr> ! <td align="center" class="pieni"> ! [ <a href="<?= $config['Pview']['path']['root'] ?>/pco.php">configure</a> ]<p> ! <a href="http://pview-php.sf.net/">Pview.php <?= $config['Pview']['version'] ?></a></td> </tr> </table> *************** *** 9,15 **** # global variables for debugging ! #foreach ($GLOBALS as $key=>$value) { ! # print "\$GLOBALS[\"$key\"] == \"$value\"<br>"; ! #} ?> --- 11,17 ---- # global variables for debugging ! foreach ($GLOBALS as $key=>$value) { ! print "\$GLOBALS[\"$key\"] == \"$value\"<br>"; ! } ?> |
From: Ville K. <vk...@us...> - 2001-06-06 20:54:04
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv11037 Modified Files: Pview.css Pview.php index.php Added Files: pco.php Log Message: adding first version of configuration script --- NEW FILE: pco.php --- <?php /* * $Id: pco.php,v 1.1 2001/06/06 20:53:55 vko Exp $ * * Copyright 2001 Ville Koskinen <bl...@fi...> * * See the enclosed file COPYING for license information (GPL). If you * did not receive this file, see http://www.fsf.org/copyleft/gpl.html. */ include_once('config/config.php'); include_once('config/series.php'); if (isset($form_columns) AND $form_columns > 0 AND $form_columns < 10) setcookie('Pviewphpcookie[columns]', $form_columns, time()+31536000); if (isset($form_rows)) setcookie('Pviewphpcookie[rows]', $form_rows, time()+31536000); if (isset($form_columns) OR isset($form_rows)) header("Location: $form_referer"); include($config['Pview']['path']['template'] . '/common-header.inc'); if (isset ($Pviewphpcookie)) { while (list ($name, $value) = each ($Pviewphpcookie)) { echo "\"$name\" == \"$value\"<br>\n"; } } ?> <form action="<?= $SCRIPT_NAME ?>" method="POST"> <input type="hidden" name="form_referer" value="<?= $GLOBALS["HTTP_REFERER"] ?>"> <table cellpadding="2" cellspacing="2" border="0"> <tr> <td>Columns in thumbnail view (min. 1, max. 9)</td> <td><input class="inputbox" type="text" name="form_columns" maxlength="1" size="1" value="<?= $Pviewphpcookie[columns] ?>"></td> </tr> <tr> <td>Rows in thumbnail view (0 = everything)</td> <td><input class="inputbox" type="text" name="form_rows" maxlength="2" size="1" value="<?= $Pviewphpcookie[rows] ?>"></td> <td> not working yet!</td> </tr> <tr> <td> </td> <td><input type="submit" value="Save"></td> </tr> </table> </form> <?php include($config['Pview']['path']['template'] . '/common-footer.inc'); ?> Index: Pview.css =================================================================== RCS file: /cvsroot/pview-php/Pview.php/Pview.css,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Pview.css 2001/05/30 10:20:56 1.4 --- Pview.css 2001/06/06 20:53:55 1.5 *************** *** 2,6 **** BODY { background-color: #FFFFFF; ! color: #5959AA; font-weight: bold; font-size: 10pt; --- 2,6 ---- BODY { background-color: #FFFFFF; ! color: #000000; font-weight: bold; font-size: 10pt; *************** *** 29,30 **** --- 29,34 ---- .iso { font-size: 15pt; } .kesk { font-size: 10pt; } + + .inputbox + { font-family: Arial, sans-serif; + font-size: 9pt; } Index: Pview.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/Pview.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** Pview.php 2001/06/06 18:17:46 1.7 --- Pview.php 2001/06/06 20:53:55 1.8 *************** *** 14,17 **** --- 14,20 ---- include_once('config/series.php'); + if (isset($Pviewphpcookie[columns])) $config['Pview']['layout']['columns'] = $Pviewphpcookie[columns]; + if (isset($Pviewphpcookie[rows])) $config['Pview']['layout']['rows'] = $Pviewphpcookie[rows]; + include($config['Pview']['path']['template'] . '/common-header.inc'); Index: index.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/index.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** index.php 2001/05/30 10:20:56 1.4 --- index.php 2001/06/06 20:53:55 1.5 *************** *** 9,16 **** */ - /* ! If you want an intro page for your gallery, ! replace this file with it. */ --- 9,15 ---- */ /* ! If you want an intro page for ! your gallery, put it here. */ |
From: Ville K. <vk...@us...> - 2001-06-06 18:17:53
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv13194 Modified Files: Pview.php Log Message: $config['Pview']['layout']['horiz'] -> $config['Pview']['layout']['columns'] Index: Pview.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/Pview.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** Pview.php 2001/05/30 10:20:56 1.6 --- Pview.php 2001/06/06 18:17:46 1.7 *************** *** 45,49 **** include($config['Pview']['path']['template'] . '/thumb/thumb.inc'); $kuvaidnro++; $tr++; ! if (($tr == $config['Pview']['layout']['horiz']) and ($maara != $prkl)) { echo("</tr><tr>\n"); $tr = 0; --- 45,49 ---- include($config['Pview']['path']['template'] . '/thumb/thumb.inc'); $kuvaidnro++; $tr++; ! if (($tr == $config['Pview']['layout']['columns']) and ($maara != $prkl)) { echo("</tr><tr>\n"); $tr = 0; |
From: Ville K. <vk...@us...> - 2001-06-06 18:17:53
|
Update of /cvsroot/pview-php/Pview.php/config In directory usw-pr-cvs1:/tmp/cvs-serv13194/config Modified Files: config.php Log Message: $config['Pview']['layout']['horiz'] -> $config['Pview']['layout']['columns'] Index: config.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/config/config.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** config.php 2001/05/30 10:20:56 1.4 --- config.php 2001/06/06 18:17:46 1.5 *************** *** 16,21 **** $config['Pview']['title']['site'] = 'Pview.php site'; ! # How many images horizontally in thumbnail view ! $config['Pview']['layout']['horiz'] = 2; # Pview.php version number, no need to change --- 16,21 ---- $config['Pview']['title']['site'] = 'Pview.php site'; ! # How many columns of images in thumbnail view ! $config['Pview']['layout']['columns'] = 3; # Pview.php version number, no need to change |
From: Ville K. <vk...@us...> - 2001-06-06 18:17:52
|
Update of /cvsroot/pview-php/Pview.php/templates/thumb In directory usw-pr-cvs1:/tmp/cvs-serv13194/templates/thumb Modified Files: footer.inc header.inc thumb.inc Log Message: $config['Pview']['layout']['horiz'] -> $config['Pview']['layout']['columns'] Index: footer.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/thumb/footer.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** footer.inc 2001/05/30 10:20:56 1.2 --- footer.inc 2001/06/06 18:17:46 1.3 *************** *** 1,5 **** </tr> <tr> ! <td height="50" align="center" colspan="<?= $config['Pview']['layout']['horiz'] ?>"> <span class="pieni"><a href="<?= $SCRIPT_NAME ?>/"><?= $config['Pview']['title']['site'] ?> frontpage</a></span></td> </tr> --- 1,5 ---- </tr> <tr> ! <td height="50" align="center" colspan="<?= $config['Pview']['layout']['columns'] ?>"> <span class="pieni"><a href="<?= $SCRIPT_NAME ?>/"><?= $config['Pview']['title']['site'] ?> frontpage</a></span></td> </tr> Index: header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/thumb/header.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** header.inc 2001/05/30 10:20:56 1.2 --- header.inc 2001/06/06 18:17:46 1.3 *************** *** 1,5 **** <table cellpadding="2" cellspacing="2" border="0" align="center"> <tr> ! <td align="center" colspan="<?= $config['Pview']['layout']['horiz'] ?>"><span class="pieni"><?= $series[$seriesid][0][4] ?></span></td> </tr> <tr> --- 1,5 ---- <table cellpadding="2" cellspacing="2" border="0" align="center"> <tr> ! <td align="center" colspan="<?= $config['Pview']['layout']['columns'] ?>"><span class="pieni"><?= $series[$seriesid][0][4] ?></span></td> </tr> <tr> Index: thumb.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/thumb/thumb.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** thumb.inc 2001/05/30 10:20:56 1.2 --- thumb.inc 2001/06/06 18:17:46 1.3 *************** *** 1,3 **** ! <td valign="top" align="center" width="<?= 100/$config['Pview']['layout']['horiz'] ?>%"> <a href="<?= $SCRIPT_NAME ?>/<?= $seriesid ?>/<?= $kuvaidnro ?>/"><img src="<?= empty($series[$seriesid][0][5]) ? $config['Pview']['path']['image'] : $series[$seriesid][0][5] ?>/<?= $seriesid ?>/thumb/<?= $image[0] ?>" --- 1,3 ---- ! <td valign="top" align="center" width="<?= 100/$config['Pview']['layout']['columns'] ?>%"> <a href="<?= $SCRIPT_NAME ?>/<?= $seriesid ?>/<?= $kuvaidnro ?>/"><img src="<?= empty($series[$seriesid][0][5]) ? $config['Pview']['path']['image'] : $series[$seriesid][0][5] ?>/<?= $seriesid ?>/thumb/<?= $image[0] ?>" |
From: Ville K. <vk...@us...> - 2001-06-04 11:40:06
|
Update of /cvsroot/pview-php/Pview.php/templates/image In directory usw-pr-cvs1:/tmp/cvs-serv4832/templates/image Modified Files: header.inc image.inc Log Message: Just clarifying html structure Index: header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/image/header.inc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** header.inc 2001/05/30 16:00:31 1.3 --- header.inc 2001/06/04 11:37:43 1.4 *************** *** 17,19 **** </tr> </table> - <table cellpadding="2" cellspacing="2" border="0" width="100%"> --- 17,18 ---- Index: image.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/image/image.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** image.inc 2001/05/30 10:20:56 1.2 --- image.inc 2001/06/04 11:37:43 1.3 *************** *** 1,2 **** --- 1,3 ---- + <table cellpadding="2" cellspacing="2" border="0" width="100%"> <tr> <td align="center"><img |
From: Ville K. <vk...@us...> - 2001-05-30 18:33:29
|
Update of /cvsroot/pview-php/Pview.php/templates/image In directory usw-pr-cvs1:/tmp/cvs-serv8631/templates/image Modified Files: footer.inc header.inc Log Message: Fixing a typo Index: footer.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/image/footer.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** footer.inc 2001/05/30 10:20:56 1.2 --- footer.inc 2001/05/30 16:00:31 1.3 *************** *** 5,9 **** <?php if ($imageid > 1) { echo("<a href=\"" . $SCRIPT_NAME . "/" . $seriesid . "/" . $prev . "/\">"); } ?>Previous<?php ! if ($imageid > 0) { echo("</a>"); } ?> <a href="<?= $SCRIPT_NAME ?>/<?= $seriesid ?>/">Index</a> <?php if ($imageid < count($series[$seriesid])-1) { --- 5,9 ---- <?php if ($imageid > 1) { echo("<a href=\"" . $SCRIPT_NAME . "/" . $seriesid . "/" . $prev . "/\">"); } ?>Previous<?php ! if ($imageid > 1) { echo("</a>"); } ?> <a href="<?= $SCRIPT_NAME ?>/<?= $seriesid ?>/">Index</a> <?php if ($imageid < count($series[$seriesid])-1) { Index: header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/image/header.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** header.inc 2001/05/30 10:20:56 1.2 --- header.inc 2001/05/30 16:00:31 1.3 *************** *** 7,11 **** <?php if ($imageid > 1) { echo("<a href=\"" . $SCRIPT_NAME . "/" . $seriesid . "/" . $prev . "/\">"); } ?>Previous<?php ! if ($imageid > 0) { echo("</a>"); } ?> <a href="<?= $SCRIPT_NAME ?>/<?= $seriesid ?>/">Index</a> <?php if ($imageid < count($series[$seriesid])-1) { --- 7,11 ---- <?php if ($imageid > 1) { echo("<a href=\"" . $SCRIPT_NAME . "/" . $seriesid . "/" . $prev . "/\">"); } ?>Previous<?php ! if ($imageid > 1) { echo("</a>"); } ?> <a href="<?= $SCRIPT_NAME ?>/<?= $seriesid ?>/">Index</a> <?php if ($imageid < count($series[$seriesid])-1) { |
From: Ville K. <vk...@us...> - 2001-05-30 18:03:04
|
Update of /cvsroot/pview-php/Pview.php/templates/thumb In directory usw-pr-cvs1:/tmp/cvs-serv9079/templates/thumb Modified Files: footer.inc header.inc thumb.inc Log Message: Making Pview.php work with pathinfo. Index: footer.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/thumb/footer.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** footer.inc 2001/05/23 20:05:54 1.1 --- footer.inc 2001/05/30 10:20:56 1.2 *************** *** 2,5 **** <tr> <td height="50" align="center" colspan="<?= $config['Pview']['layout']['horiz'] ?>"> ! <span class="pieni"><a href="<?= $PHP_SELF ?>"><?= $config['Pview']['title']['site'] ?> frontpage</a></span></td> </tr> --- 2,5 ---- <tr> <td height="50" align="center" colspan="<?= $config['Pview']['layout']['horiz'] ?>"> ! <span class="pieni"><a href="<?= $SCRIPT_NAME ?>/"><?= $config['Pview']['title']['site'] ?> frontpage</a></span></td> </tr> Index: header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/thumb/header.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** header.inc 2001/05/23 20:05:54 1.1 --- header.inc 2001/05/30 10:20:56 1.2 *************** *** 1,5 **** ! <table cellpadding="2" cellspacing="2" border="0"> <tr> ! <td align="center" colspan="<?= $config['Pview']['layout']['horiz'] ?>"><span class="pieni"><?= $pictureseries[$GLOBALS["id"]][4] ?></span></td> </tr> <tr> --- 1,5 ---- ! <table cellpadding="2" cellspacing="2" border="0" align="center"> <tr> ! <td align="center" colspan="<?= $config['Pview']['layout']['horiz'] ?>"><span class="pieni"><?= $series[$seriesid][0][4] ?></span></td> </tr> <tr> Index: thumb.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/thumb/thumb.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** thumb.inc 2001/05/23 20:05:54 1.1 --- thumb.inc 2001/05/30 10:20:56 1.2 *************** *** 1,5 **** <td valign="top" align="center" width="<?= 100/$config['Pview']['layout']['horiz'] ?>%"> ! <a href="<?= $PHP_SELF ?>?id=<?= $GLOBALS["id"] ?>&a=<?= $kuvaidnro ?>"><img ! src="<?= empty($pictureseries[$GLOBALS["id"]][5]) ? $config['Pview']['path']['image'] : $pictureseries[$GLOBALS["id"]][5] ?>/<?= $GLOBALS["id"] ?>/thumb/<?= $pics[$kuvaidnro][0] ?>" ! border="0"><br><?= $arvo[1] ?></a></td> --- 1,5 ---- <td valign="top" align="center" width="<?= 100/$config['Pview']['layout']['horiz'] ?>%"> ! <a href="<?= $SCRIPT_NAME ?>/<?= $seriesid ?>/<?= $kuvaidnro ?>/"><img ! src="<?= empty($series[$seriesid][0][5]) ? $config['Pview']['path']['image'] : $series[$seriesid][0][5] ?>/<?= $seriesid ?>/thumb/<?= $image[0] ?>" ! border="0"><br><?= $image[1] ?></a></td> |
From: Ville K. <vk...@us...> - 2001-05-30 17:36:42
|
Update of /cvsroot/pview-php/Pview.php/templates/image In directory usw-pr-cvs1:/tmp/cvs-serv9079/templates/image Modified Files: footer.inc header.inc image.inc Log Message: Making Pview.php work with pathinfo. Index: footer.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/image/footer.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** footer.inc 2001/05/23 20:05:54 1.1 --- footer.inc 2001/05/30 10:20:56 1.2 *************** *** 3,15 **** <tr> <td height="40" align="center"> ! <?php if ($a > 0) { ! echo("<a href=\"" . $PHP_SELF . "?id=" . $GLOBALS["id"] . "&a=" . $prev . "\">"); } ?>Previous<?php ! if ($a > 0) { echo("</a>"); } ?> <a ! href="<?= $PHP_SELF ?>?id=<?= $GLOBALS["id"] ?>&a=-1">Index</a> <?php ! if ($a < ($maara - 1)) { ! echo("<a href=\"" . $PHP_SELF . "?id=" . $GLOBALS["id"] . "&a=" . $next . "\">"); } ?>Next<?php ! if ($a < $maara) { echo("</a>"); } ?></td> </tr> <tr> ! <td height="30" align="center"><a href="<?= $PHP_SELF ?>"><?= $config['Pview']['title']['site'] ?> frontpage</a></td> </tr> --- 3,15 ---- <tr> <td height="40" align="center"> ! <?php if ($imageid > 1) { ! echo("<a href=\"" . $SCRIPT_NAME . "/" . $seriesid . "/" . $prev . "/\">"); } ?>Previous<?php ! if ($imageid > 0) { echo("</a>"); } ?> <a ! href="<?= $SCRIPT_NAME ?>/<?= $seriesid ?>/">Index</a> <?php ! if ($imageid < count($series[$seriesid])-1) { ! echo("<a href=\"" . $SCRIPT_NAME . "/" . $seriesid . "/" . $next . "/\">"); } ?>Next<?php ! if ($imageid < count($series[$seriesid])-1) { echo("</a>"); } ?></td> </tr> <tr> ! <td height="30" align="center"><a href="<?= $SCRIPT_NAME ?>/"><?= $config['Pview']['title']['site'] ?> frontpage</a></td> </tr> Index: header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/image/header.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** header.inc 2001/05/23 20:05:54 1.1 --- header.inc 2001/05/30 10:20:56 1.2 *************** *** 1,18 **** <table cellpadding="2" cellspacing="2" border="0" width="100%"> <tr> ! <td align="center"><span class="pieni"><?= $pictureseries[$GLOBALS["id"]][4] ?></span></td> </tr> <tr> <td height="40" align="center"> ! <?php if ($a > 0) { ! echo("<a href=\"" . $PHP_SELF . "?id=" . $GLOBALS["id"] . "&a=" . $prev . "\">"); } ?>Previous<?php ! if ($a > 0) { echo("</a>"); } ?> <a ! href="<?= $PHP_SELF ?>?id=<?= $GLOBALS["id"] ?>&a=-1">Index</a> <?php ! if ($a < ($maara - 1)) { ! echo("<a href=\"" . $PHP_SELF . "?id=" . $GLOBALS["id"] . "&a=" . $next . "\">"); } ?>Next<?php ! if ($a < $maara) { echo("</a>"); } ?></td> </tr> <tr> ! <td align="center"><?= $pics[$a][1] ?> <span class="pieni">pic <?= $next ?>/<?= $maara ?></span></td> </tr> </table> --- 1,18 ---- <table cellpadding="2" cellspacing="2" border="0" width="100%"> <tr> ! <td align="center"><span class="pieni"><?= $series[$seriesid][0][4] ?></span></td> </tr> <tr> <td height="40" align="center"> ! <?php if ($imageid > 1) { ! echo("<a href=\"" . $SCRIPT_NAME . "/" . $seriesid . "/" . $prev . "/\">"); } ?>Previous<?php ! if ($imageid > 0) { echo("</a>"); } ?> <a ! href="<?= $SCRIPT_NAME ?>/<?= $seriesid ?>/">Index</a> <?php ! if ($imageid < count($series[$seriesid])-1) { ! echo("<a href=\"" . $SCRIPT_NAME . "/" . $seriesid . "/" . $next . "/\">"); } ?>Next<?php ! if ($imageid < count($series[$seriesid])-1) { echo("</a>"); } ?></td> </tr> <tr> ! <td align="center"><?= $series[$seriesid][$imageid][1] ?> <span class="pieni">pic <?= $imageid ?>/<?= count($series[$seriesid])-1 ?></span></td> </tr> </table> Index: image.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/image/image.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** image.inc 2001/05/23 20:05:54 1.1 --- image.inc 2001/05/30 10:20:56 1.2 *************** *** 1,8 **** <tr> <td align="center"><img ! src="<?= empty($pictureseries[$GLOBALS["id"]][5]) ? $config['Pview']['path']['image'] : $pictureseries[$GLOBALS["id"]][5]; ?>/<?= $GLOBALS["id"] ?>/normal/<?= $pics[$a][0] ?>" alt="[IMAGE (<?= $pics[$a][1] ?>)]"></td> </tr> <tr> ! <td align="center" height="30"><?= $pics[$a][2] ?></td> </tr> </table> --- 1,8 ---- <tr> <td align="center"><img ! src="<?= empty($series[$seriesid][0][5]) ? $config['Pview']['path']['image'] : $series[$seriesid][0][5]; ?>/<?= $seriesid ?>/normal/<?= $series[$seriesid][$imageid][0] ?>" alt="[IMAGE (<?= $series[$seriesid][$imageid][1] ?>)]"></td> </tr> <tr> ! <td align="center" height="30"><?= $series[$seriesid][$imageid][2] ?></td> </tr> </table> |
From: Ville K. <vk...@us...> - 2001-05-30 17:36:41
|
Update of /cvsroot/pview-php/Pview.php/templates/index In directory usw-pr-cvs1:/tmp/cvs-serv9079/templates/index Modified Files: series.inc Log Message: Making Pview.php work with pathinfo. Index: series.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/index/series.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** series.inc 2001/05/23 20:05:54 1.1 --- series.inc 2001/05/30 10:20:56 1.2 *************** *** 1,12 **** <tr> ! <td><a href="<?= $PHP_SELF . '?id=' . $series ?>"><?= $pictureseries[$series][0] ?></a></td> <td width="5"> </td> ! <td><?= $pictureseries[$series][2] ?></td> <td width="5"> </td> ! <td><?= $pictureseries[$series][1] ?></td> <td width="5"> </td> ! <td><?= count($$series) ?> pics</td> <td width="5"> </td> ! <td><?= $pictureseries[$series][3] ?></td> </tr> --- 1,12 ---- <tr> ! <td><a href="<?= $SCRIPT_NAME ?>/<?= $key ?>/"><?= $series[$key][0][0] ?></a></td> <td width="5"> </td> ! <td><?= $series[$key][0][2] ?></td> <td width="5"> </td> ! <td><?= $series[$key][0][1] ?></td> <td width="5"> </td> ! <td><?= count($series[$key])-1 ?> pics</td> <td width="5"> </td> ! <td><?= $series[$key][0][3] ?></td> </tr> |
From: Ville K. <vk...@us...> - 2001-05-30 15:46:27
|
Update of /cvsroot/pview-php/Pview.php/config In directory usw-pr-cvs1:/tmp/cvs-serv9079/config Modified Files: config.php series.php Removed Files: images.php Log Message: Making Pview.php work with pathinfo. Index: config.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/config/config.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** config.php 2001/05/23 20:05:54 1.3 --- config.php 2001/05/30 10:20:56 1.4 *************** *** 17,21 **** # How many images horizontally in thumbnail view ! $config['Pview']['layout']['horiz'] = 4; # Pview.php version number, no need to change --- 17,21 ---- # How many images horizontally in thumbnail view ! $config['Pview']['layout']['horiz'] = 2; # Pview.php version number, no need to change Index: series.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/config/series.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** series.php 2001/05/22 18:18:44 1.2 --- series.php 2001/05/30 10:20:56 1.3 *************** *** 4,27 **** */ ! $pictureseries = array( ! # id => description, date, place, longer description, copyright, location of the id image dir WITHOUT trailing slash (if default leave empty) ! "test" => array( ! "Sample images for Pview.php", ! "2001", ! "Helsinki, Finland", ! "This is a longer description", ! "© <a href=\"mailto:vk...@li...\">Ville Koskinen</a> 2001 | You may not use any of these pictures without my permission.", ! "" ! ), ! "remotetest" => array( ! "Sample image test for remote site", ! "2001", ! "Helsinki, Finland", ! "Loooong desc", ! "© <a href=\"mailto:vk...@li...\">Ville Koskinen</a> 2001 | You may not use any of these pictures without my permission.", ! "http://www.helsinki.fi/~vakoskin/images" ! ) ); --- 4,28 ---- */ ! # id => short description, date, place, longer description, ! # copyright, location of the id image dir WITHOUT ! # trailing slash (if default leave empty) ! $series = array( ! "test" => array( ! array("Sample images for Pview.php", "2001", "Helsinki, Finland", "This is a longer description", "© <a href=\"mailto:bl...@fi...\">Ville Koskinen</a> 2001 | You may not use any of these pictures without my permission.", ""), ! array("jesus.jpg", "Test shot of tv-screen", "longer description test"), ! array("akkuna.jpg", "Panorama picture out of my workroom window"), ! array("itapasila.jpg", "Itä-Pasila, Asemapäälliköntie"), ! array("kelakapyla.jpg", "Käpylä, Koskelantie 5"), ! ), ! ! "remotetest" => array( ! array("Sample image test for remote site", "2001", "Helsinki, Finland", "Loooong desc", "© <a href=\"mailto:bl...@fi...\">Ville Koskinen</a> 2001 | You may not use any of these pictures without my permission.", "http://www.helsinki.fi/~vakoskin/images"), ! array("jesus.jpg", "Test shot of tv-screen", "longer description test"), ! array("akkuna.jpg", "Panorama picture out of my workroom window"), ! array("itapasila.jpg", "Itä-Pasila, Asemapäälliköntie"), ! array("kelakapyla.jpg", "Käpylä, Koskelantie 5"), ! ), ); --- images.php DELETED --- |
From: Ville K. <vk...@us...> - 2001-05-30 15:04:55
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv9079 Modified Files: Pview.css Pview.php index.php Log Message: Making Pview.php work with pathinfo. Index: Pview.css =================================================================== RCS file: /cvsroot/pview-php/Pview.php/Pview.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Pview.css 2001/05/23 20:05:54 1.3 --- Pview.css 2001/05/30 10:20:56 1.4 *************** *** 20,27 **** TD.vaa { background-color: #E9E9E9; color: #000000; } ! A, A:Visited, A:Active, A:Hover { text-decoration: none; color : #0000FF; } ! A:Hover { background: #FFF9F9; color : #0000EE; } .pieni { font-size: 8pt; } --- 20,28 ---- TD.vaa { background-color: #E9E9E9; color: #000000; } ! A, A:Visited, A:Active { text-decoration: none; color : #0000FF; } ! A:Hover { text-decoration: underline; ! background: #FFF9F9; color : #0000EE; } .pieni { font-size: 8pt; } Index: Pview.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/Pview.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Pview.php 2001/05/24 08:17:09 1.5 --- Pview.php 2001/05/30 10:20:56 1.6 *************** *** 11,42 **** /* include config files */ ! include_once("config/config.php"); ! include_once("config/series.php"); ! include_once("config/images.php"); include($config['Pview']['path']['template'] . '/common-header.inc'); ! $pics = $$GLOBALS["id"]; ! $maara = count($pics); ! if (!isset($GLOBALS["id"])) { /* no series defined, show index page */ include($config['Pview']['path']['template'] . '/index/header.inc'); ! reset($pictureseries); ! while($series = key($pictureseries)): include($config['Pview']['path']['template'] . '/index/series.inc'); ! next($pictureseries); endwhile; include($config['Pview']['path']['template'] . '/index/footer.inc'); ! } elseif ((!isset($GLOBALS["a"])) or ($GLOBALS["a"] == "-1")) { /* series defined but image not, show thumbindex of that series */ ! $tr = 0; $kuvaidnro = 0; include($config['Pview']['path']['template'] . '/thumb/header.inc'); ! foreach($pics as $arvo) { $prkl = $kuvaidnro + 1; include($config['Pview']['path']['template'] . '/thumb/thumb.inc'); --- 11,45 ---- /* include config files */ ! include_once('config/config.php'); ! include_once('config/series.php'); include($config['Pview']['path']['template'] . '/common-header.inc'); ! if (!empty($GLOBALS["PATH_INFO"])) { ! $explpathinfo = explode ("/", $GLOBALS["PATH_INFO"]); ! $seriesid = $explpathinfo[1]; ! $imageid = $explpathinfo[2]; ! } ! if (empty($seriesid)) { /* no series defined, show index page */ include($config['Pview']['path']['template'] . '/index/header.inc'); ! reset($series); ! while($key = key($series)): include($config['Pview']['path']['template'] . '/index/series.inc'); ! next($series); endwhile; include($config['Pview']['path']['template'] . '/index/footer.inc'); ! } elseif (!empty($seriesid) AND (empty($imageid) OR $imageid > count($series[$seriesid])-1)) { /* series defined but image not, show thumbindex of that series */ ! $tr = 0; $kuvaidnro = 1; include($config['Pview']['path']['template'] . '/thumb/header.inc'); ! reset($series); ! while($image = $series[$seriesid][$kuvaidnro]): $prkl = $kuvaidnro + 1; include($config['Pview']['path']['template'] . '/thumb/thumb.inc'); *************** *** 46,58 **** $tr = 0; } ! } include($config['Pview']['path']['template'] . '/thumb/footer.inc'); ! } elseif (isset($GLOBALS["a"])) { /* if image defined, show it (duh!) */ ! $prev = $a - 1; ! $next = $a + 1; include($config['Pview']['path']['template'] . '/image/header.inc'); include($config['Pview']['path']['template'] . '/image/image.inc'); --- 49,62 ---- $tr = 0; } ! next($series); ! endwhile; include($config['Pview']['path']['template'] . '/thumb/footer.inc'); ! } else { /* if image defined, show it (duh!) */ ! $prev = $imageid - 1; ! $next = $imageid + 1; include($config['Pview']['path']['template'] . '/image/header.inc'); include($config['Pview']['path']['template'] . '/image/image.inc'); Index: index.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/index.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** index.php 2001/05/22 18:15:03 1.3 --- index.php 2001/05/30 10:20:56 1.4 *************** *** 15,19 **** */ ! header('Location: Pview.php'); ?> --- 15,19 ---- */ ! header('Location: Pview.php/'); ?> |
From: Ville K. <vk...@us...> - 2001-05-30 13:46:09
|
Update of /cvsroot/pview-php/Pview.php/doc In directory usw-pr-cvs1:/tmp/cvs-serv12367 Modified Files: README Log Message: Update README Index: README =================================================================== RCS file: /cvsroot/pview-php/Pview.php/doc/README,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** README 2001/05/22 18:18:44 1.2 --- README 2001/05/30 10:38:02 1.3 *************** *** 3,9 **** ! Documentation is _not_ complete or finished or nothing. ! ------------------------------------------------------------ FILES: --- 3,11 ---- ! This documentation is just something that came in my head. ! It's _not_ complete and probably never will be, unless ! someone wants to do it. ! -------------------------------------------------------------- FILES: *************** *** 11,36 **** Pview.php script itself (doh!) Pview.css style sheet config/config.php general configuration file config/series.php image series configuration file - config/images.php configure images in series images/ images directory images/<series>/thumb/ thumbnail images images/<series>/normal/ "big" images templates/ most html ! tools/convert.sh make thumbnails ! ------------------------------------------------------------ INSTALLATION: ! * Extract the .tar.gz file to your web directory. ! * Edit config files in config/. ! * Make a directory for the new serie to images/. Name the ! directory same as the ids in config/series.php and ! config/images.php. ! * Put all the images in the new serie to images/<seriename>. ! * Run tools/convert.sh to make thumbnails of the images and ! to move them in right directories. ! * Surf to http://<yourserver>/pview/ ! ------------------------------------------------------------ --- 13,41 ---- Pview.php script itself (doh!) Pview.css style sheet + index.php default is to redirect to Pview.php, + but you can change it to be your + intro page config/config.php general configuration file config/series.php image series configuration file images/ images directory images/<series>/thumb/ thumbnail images images/<series>/normal/ "big" images templates/ most html ! tools/convert.sh makes thumbnails ! (you need imagemagick!) ! -------------------------------------------------------------- INSTALLATION: ! 1a) Extract the .tar.gz file to your web directory. ! 1b) Get the CVS version from http://pview-php.sf.net/. ! 2) Edit config files in config/. ! 3) Make a directory for the new serie to images/. Name the ! directory same as the id in config/series.php. ! 4) Put all the images in the new serie to images/<seriename>/. ! 5) Run tools/convert.sh to make thumbnails of the images and ! to move them in right directories. ! 6) Surf to http://<yourserver>/pview/ ! -------------------------------------------------------------- |
From: Ville K. <vk...@us...> - 2001-05-30 11:53:39
|
Update of /cvsroot/pview-php/Pview.php/templates In directory usw-pr-cvs1:/tmp/cvs-serv9079/templates Modified Files: common-footer.inc common-header.inc Log Message: Making Pview.php work with pathinfo. Index: common-footer.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/common-footer.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** common-footer.inc 2001/05/23 20:05:54 1.2 --- common-footer.inc 2001/05/30 10:20:56 1.3 *************** *** 10,14 **** # global variables for debugging #foreach ($GLOBALS as $key=>$value) { ! # print "\$GLOBALS[\"$key\"] == $value<br>"; #} --- 10,14 ---- # global variables for debugging #foreach ($GLOBALS as $key=>$value) { ! # print "\$GLOBALS[\"$key\"] == \"$value\"<br>"; #} Index: common-header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/common-header.inc,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** common-header.inc 2001/05/22 16:27:09 1.1.1.1 --- common-header.inc 2001/05/30 10:20:56 1.2 *************** *** 9,13 **** $title = ''; ! if (!empty($config['title']['site'])) { $title .= $config['title']['site']; } ?> --- 9,13 ---- $title = ''; ! if (!empty($config['Pview']['title']['site'])) { $title .= $config['Pview']['title']['site']; } ?> |
From: Ville K. <vk...@us...> - 2001-05-29 18:41:41
|
Update of /cvsroot/pview-php/Pview.php/doc In directory usw-pr-cvs1:/tmp/cvs-serv26394 Modified Files: TODO Log Message: Updating TODO again Index: TODO =================================================================== RCS file: /cvsroot/pview-php/Pview.php/doc/TODO,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** TODO 2001/05/29 18:34:04 1.4 --- TODO 2001/05/29 18:41:39 1.5 *************** *** 5,8 **** --- 5,10 ---- * Clean up that messy code! * config option: "how many thumbs/page" + * config section for users, show all big pictures on one page, + show thumbnails etc. * Move Prev/Index/Next to its own function, there is probably even more stuff that should have its own function |
From: Ville K. <vk...@us...> - 2001-05-29 18:34:15
|
Update of /cvsroot/pview-php/Pview.php/doc In directory usw-pr-cvs1:/tmp/cvs-serv24500 Modified Files: TODO Log Message: Updating TODO Index: TODO =================================================================== RCS file: /cvsroot/pview-php/Pview.php/doc/TODO,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** TODO 2001/05/23 20:08:30 1.3 --- TODO 2001/05/29 18:34:04 1.4 *************** *** 4,7 **** --- 4,8 ---- * Clean up that messy code! + * config option: "how many thumbs/page" * Move Prev/Index/Next to its own function, there is probably even more stuff that should have its own function |
From: Ville K. <vk...@us...> - 2001-05-24 08:24:44
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv22867 Modified Files: COPYING Log Message: Index: COPYING =================================================================== RCS file: /cvsroot/pview-php/Pview.php/COPYING,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** COPYING 2001/05/22 16:26:52 1.1.1.1 --- COPYING 2001/05/24 08:24:40 1.2 *************** *** 339,341 **** library. If this is what you want to do, use the GNU Library General Public License instead of this License. - --- 339,340 ---- |
From: Ville K. <vk...@us...> - 2001-05-24 08:17:12
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv21909 Modified Files: Pview.php Log Message: just testing Index: Pview.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/Pview.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Pview.php 2001/05/23 20:11:53 1.4 --- Pview.php 2001/05/24 08:17:09 1.5 *************** *** 58,62 **** include($config['Pview']['path']['template'] . '/image/image.inc'); include($config['Pview']['path']['template'] . '/image/footer.inc'); - } --- 58,61 ---- |