pview-php-commits Mailing List for Pview.php (Page 5)
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-07-06 08:14:15
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv315 Modified Files: Pview.css pco.php Log Message: Don't remember what's done here, *sigh*. Index: Pview.css =================================================================== RCS file: /cvsroot/pview-php/Pview.php/Pview.css,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Pview.css 2001/06/06 20:53:55 1.5 --- Pview.css 2001/07/06 08:14:11 1.6 *************** *** 33,34 **** --- 33,35 ---- { font-family: Arial, sans-serif; font-size: 9pt; } + .red { color: #FF0000; } Index: pco.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/pco.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** pco.php 2001/06/08 18:41:27 1.3 --- pco.php 2001/07/06 08:14:11 1.4 *************** *** 13,16 **** --- 13,23 ---- include_once('config/series.php'); + #if (!isset($form_columns) AND !isset($form_rows)) { + # include($config['Pview']['path']['template'] . '/pco/pco.inc'); + #} elseif (($form_columns < 1 AND $form_columns > 9)) { + # include($config['Pview']['path']['template'] . '/pco/pco-error.inc'); + #} + + if (isset($form_columns) AND $form_columns > 0 AND $form_columns < 10) setcookie('Pviewphpcookie[columns]', $form_columns, time()+31536000); |
From: Ville K. <vk...@us...> - 2001-06-14 09:45:03
|
Update of /cvsroot/pview-php/Pview.php/lib In directory usw-pr-cvs1:/tmp/cvs-serv14858/lib Modified Files: pv.php Log Message: make index link in image view go to the thumb page where it is (if $config['Pview']['layout']['rows'] > 0) Index: pv.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/lib/pv.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** pv.php 2001/06/14 08:00:17 1.3 --- pv.php 2001/06/14 09:45:00 1.4 *************** *** 21,24 **** --- 21,26 ---- $prev = $pathi[i] - 1; $next = $pathi[i] + 1; + if (!empty($config['Pview']['layout']['rows'])) + $indexpage = floor($pathi[i] / ($config['Pview']['layout']['columns'] * $config['Pview']['layout']['rows'])) . '/'; if ($pathi[i] > 1) *************** *** 30,34 **** echo ' <a href="' . $config['Pview']['path']['root'] . ! '/thumb.php/' . $pathi[s] . '/">Index</a> '; if ($pathi[i] < $imagecount - 1) echo '<a href="' . $SCRIPT_NAME . '/' . $pathi[s] . '/' . $next . '/">'; --- 32,40 ---- echo ' <a href="' . $config['Pview']['path']['root'] . ! '/thumb.php/' . $pathi[s] . '/'; ! if (!empty($config['Pview']['layout']['rows'])) ! echo $indexpage; ! ! echo '">Index</a> '; if ($pathi[i] < $imagecount - 1) echo '<a href="' . $SCRIPT_NAME . '/' . $pathi[s] . '/' . $next . '/">'; |
From: Ville K. <vk...@us...> - 2001-06-14 08:50:05
|
Update of /cvsroot/pview-php/Pview.php/config In directory usw-pr-cvs1:/tmp/cvs-serv1151/config Modified Files: config.php Log Message: continue $config['Pview']['layout']['rows'] configuration Index: config.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/config/config.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** config.php 2001/06/06 20:59:44 1.6 --- config.php 2001/06/14 08:50:00 1.7 *************** *** 20,24 **** # How many rows of images in thumbnail view ! $config['Pview']['layout']['rows'] = '0'; # Pview.php version number, no need to change --- 20,24 ---- # How many rows of images in thumbnail view ! $config['Pview']['layout']['rows'] = '3'; # Pview.php version number, no need to change |
From: Ville K. <vk...@us...> - 2001-06-14 08:50:05
|
Update of /cvsroot/pview-php/Pview.php/doc In directory usw-pr-cvs1:/tmp/cvs-serv1151/doc Modified Files: TODO Log Message: continue $config['Pview']['layout']['rows'] configuration Index: TODO =================================================================== RCS file: /cvsroot/pview-php/Pview.php/doc/TODO,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** TODO 2001/06/13 11:10:51 1.6 --- TODO 2001/06/14 08:50:00 1.7 *************** *** 4,7 **** --- 4,8 ---- * Clean up that messy code! + * fix title generation * config option: "how many thumbs/page" * config section for users, show all big pictures on one page, |
From: Ville K. <vk...@us...> - 2001-06-14 08:50:05
|
Update of /cvsroot/pview-php/Pview.php/templates/thumb In directory usw-pr-cvs1:/tmp/cvs-serv1151/templates/thumb Modified Files: footer.inc header.inc Log Message: continue $config['Pview']['layout']['rows'] configuration Index: footer.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/thumb/footer.inc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** footer.inc 2001/06/14 08:00:17 1.5 --- footer.inc 2001/06/14 08:50:00 1.6 *************** *** 1,7 **** ! <td align="center"> <?php $prev = $pathi[i] - 1; $next = $pathi[i] + 1; ! echo $kuvaidnro; if ($pathi[i] >= 1) echo '<a href="' . $SCRIPT_NAME . '/' . $pathi[s] . '/' . $prev . '/">'; --- 1,10 ---- ! <tr> ! <td align="center" colspan="<?= $config['Pview']['layout']['columns'] ?>"> <?php + + if (!empty($config['Pview']['layout']['rows'])) { $prev = $pathi[i] - 1; $next = $pathi[i] + 1; ! if ($pathi[i] >= 1) echo '<a href="' . $SCRIPT_NAME . '/' . $pathi[s] . '/' . $prev . '/">'; *************** *** 20,24 **** if (($pathi[i] = 0) OR ($imagecount - 1 > $kuvaidnro - 1)) echo '</a>'; ! ?> --- 23,27 ---- if (($pathi[i] = 0) OR ($imagecount - 1 > $kuvaidnro - 1)) echo '</a>'; ! } ?> Index: header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/thumb/header.inc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** header.inc 2001/06/11 17:15:44 1.6 --- header.inc 2001/06/14 08:50:00 1.7 *************** *** 2,6 **** <tr> <td align="center" colspan="<?= $config['Pview']['layout']['columns'] ?>"><span class="pieni"><?= $series[$pathi[s]][0][4] ?></span><p> ! <?= $series[$pathi[s]][0][0] ?><br><span class="pieni">(<?= $series[$pathi[s]][0][3] ?>)</span></td> </tr> <tr> --- 2,8 ---- <tr> <td align="center" colspan="<?= $config['Pview']['layout']['columns'] ?>"><span class="pieni"><?= $series[$pathi[s]][0][4] ?></span><p> ! <?= $series[$pathi[s]][0][0] ?><?php if (!empty($series[$pathi[s]][0][3])) ! echo '<br><span class="pieni">(' . $series[$pathi[s]][0][3] . ')</span></td>'; ?> ! </tr> <tr> |
From: Ville K. <vk...@us...> - 2001-06-14 08:50:05
|
Update of /cvsroot/pview-php/Pview.php/templates/pco In directory usw-pr-cvs1:/tmp/cvs-serv1151/templates/pco Modified Files: pco.inc Log Message: continue $config['Pview']['layout']['rows'] configuration Index: pco.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/pco/pco.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** pco.inc 2001/06/07 11:18:59 1.1 --- pco.inc 2001/06/14 08:50:00 1.2 *************** *** 9,13 **** <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> --- 9,12 ---- |
From: Ville K. <vk...@us...> - 2001-06-14 08:50:05
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv1151 Modified Files: thumb.php Log Message: continue $config['Pview']['layout']['rows'] configuration Index: thumb.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/thumb.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** thumb.php 2001/06/14 08:00:16 1.2 --- thumb.php 2001/06/14 08:50:00 1.3 *************** *** 30,34 **** $imagecount = count($series[$pathi[s]]); if (!empty($pathi[i])) { ! $kuvaidnro = $config['Pview']['layout']['columns'] * $config['Pview']['layout']['rows'] + 1; } else { $kuvaidnro = 1; --- 30,34 ---- $imagecount = count($series[$pathi[s]]); if (!empty($pathi[i])) { ! $kuvaidnro = $config['Pview']['layout']['columns'] * $config['Pview']['layout']['rows'] * $pathi[i] + 1; } else { $kuvaidnro = 1; *************** *** 36,46 **** include($config['Pview']['path']['template'] . '/thumb/header.inc'); reset($series); ! while(($image = $series[$pathi[s]][$kuvaidnro]) AND ($rows < $config['Pview']['layout']['rows'])): ! $prkl = $kuvaidnro + 1; 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; $rows++; } next($series); --- 36,49 ---- include($config['Pview']['path']['template'] . '/thumb/header.inc'); reset($series); ! while($image = $series[$pathi[s]][$kuvaidnro]): ! if (!empty($config['Pview']['layout']['rows'])) { ! if ($rows == $config['Pview']['layout']['rows']) break; ! } include($config['Pview']['path']['template'] . '/thumb/thumb.inc'); $kuvaidnro++; $tr++; ! if ($tr == $config['Pview']['layout']['columns']) { echo(" </tr>\n <tr>\n"); ! $tr = 0; ! if ($config['Pview']['layout']['rows'] != '0') $rows++; } next($series); |
From: Ville K. <vk...@us...> - 2001-06-14 08:00:21
|
Update of /cvsroot/pview-php/Pview.php/lib In directory usw-pr-cvs1:/tmp/cvs-serv22480/lib Modified Files: pv.php Log Message: make $config['Pview']['layout']['rows'] user configurable Index: pv.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/lib/pv.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** pv.php 2001/06/12 18:36:54 1.2 --- pv.php 2001/06/14 08:00:17 1.3 *************** *** 31,40 **** echo ' <a href="' . $config['Pview']['path']['root'] . '/thumb.php/' . $pathi[s] . '/">Index</a> '; ! if ($pathi[i] < $c - 1) echo '<a href="' . $SCRIPT_NAME . '/' . $pathi[s] . '/' . $next . '/">'; echo 'Next'; ! if ($pathi[i] < $c - 1) echo '</a>'; } --- 31,40 ---- echo ' <a href="' . $config['Pview']['path']['root'] . '/thumb.php/' . $pathi[s] . '/">Index</a> '; ! if ($pathi[i] < $imagecount - 1) echo '<a href="' . $SCRIPT_NAME . '/' . $pathi[s] . '/' . $next . '/">'; echo 'Next'; ! if ($pathi[i] < $imagecount - 1) echo '</a>'; } |
From: Ville K. <vk...@us...> - 2001-06-14 08:00:21
|
Update of /cvsroot/pview-php/Pview.php/templates/thumb In directory usw-pr-cvs1:/tmp/cvs-serv22480/templates/thumb Modified Files: footer.inc Log Message: make $config['Pview']['layout']['rows'] user configurable Index: footer.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/thumb/footer.inc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** footer.inc 2001/06/07 11:18:59 1.4 --- footer.inc 2001/06/14 08:00:17 1.5 *************** *** 0 **** --- 1,26 ---- + <td align="center"> + <?php + $prev = $pathi[i] - 1; + $next = $pathi[i] + 1; + echo $kuvaidnro; + if ($pathi[i] >= 1) + echo '<a href="' . $SCRIPT_NAME . '/' . $pathi[s] . '/' . $prev . '/">'; + + echo 'Previous'; + if ($pathi[i] >= 1) + echo '</a>'; + + echo ' '; + + if (($pathi[i] = 0) OR ($imagecount - 1 > $kuvaidnro - 1)) + echo '<a href="' . $SCRIPT_NAME . '/' . $pathi[s] . '/' . $next . '/">'; + + echo 'Next'; + + if (($pathi[i] = 0) OR ($imagecount - 1 > $kuvaidnro - 1)) + echo '</a>'; + + ?> + + </td> + </tr> |
From: Ville K. <vk...@us...> - 2001-06-14 08:00:21
|
Update of /cvsroot/pview-php/Pview.php/doc In directory usw-pr-cvs1:/tmp/cvs-serv22480/doc Modified Files: CHANGES Log Message: make $config['Pview']['layout']['rows'] user configurable Index: CHANGES =================================================================== RCS file: /cvsroot/pview-php/Pview.php/doc/CHANGES,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** CHANGES 2001/06/11 18:16:46 1.4 --- CHANGES 2001/06/14 08:00:16 1.5 *************** *** 5,9 **** cvs --- ! * personal configuration script for users, stores configuration in cookies * put stuff in functions and them to lib/pv.php * move thumb and image views to their own files, so Pview.php shows just --- 5,10 ---- cvs --- ! * personal configuration script for users, stores configuration in cookies, ! currently configures columns and rows of images in thumb view * put stuff in functions and them to lib/pv.php * move thumb and image views to their own files, so Pview.php shows just |
From: Ville K. <vk...@us...> - 2001-06-14 08:00:21
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv22480 Modified Files: thumb.php Log Message: make $config['Pview']['layout']['rows'] user configurable Index: thumb.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/thumb.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** thumb.php 2001/06/08 13:42:40 1.1 --- thumb.php 2001/06/14 08:00:16 1.2 *************** *** 27,34 **** include($config['Pview']['path']['template'] . '/common-header.inc'); ! $tr = 0; $kuvaidnro = 1; include($config['Pview']['path']['template'] . '/thumb/header.inc'); reset($series); ! while($image = $series[$pathi[s]][$kuvaidnro]): $prkl = $kuvaidnro + 1; include($config['Pview']['path']['template'] . '/thumb/thumb.inc'); --- 27,40 ---- include($config['Pview']['path']['template'] . '/common-header.inc'); ! $tr = 0; $rows = 0; ! $imagecount = count($series[$pathi[s]]); ! if (!empty($pathi[i])) { ! $kuvaidnro = $config['Pview']['layout']['columns'] * $config['Pview']['layout']['rows'] + 1; ! } else { ! $kuvaidnro = 1; ! } include($config['Pview']['path']['template'] . '/thumb/header.inc'); reset($series); ! while(($image = $series[$pathi[s]][$kuvaidnro]) AND ($rows < $config['Pview']['layout']['rows'])): $prkl = $kuvaidnro + 1; include($config['Pview']['path']['template'] . '/thumb/thumb.inc'); *************** *** 36,40 **** if (($tr == $config['Pview']['layout']['columns']) AND ($maara != $prkl)) { echo(" </tr>\n <tr>\n"); ! $tr = 0; } next($series); --- 42,46 ---- if (($tr == $config['Pview']['layout']['columns']) AND ($maara != $prkl)) { echo(" </tr>\n <tr>\n"); ! $tr = 0; $rows++; } next($series); |
From: Ville K. <vk...@us...> - 2001-06-13 11:10:56
|
Update of /cvsroot/pview-php/Pview.php/doc In directory usw-pr-cvs1:/tmp/cvs-serv12210/doc Modified Files: TODO Log Message: update TODO Index: TODO =================================================================== RCS file: /cvsroot/pview-php/Pview.php/doc/TODO,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** TODO 2001/05/29 18:41:39 1.5 --- TODO 2001/06/13 11:10:51 1.6 *************** *** 7,14 **** * 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 * Multilingual * Database support * Web administration - --- 7,13 ---- * config section for users, show all big pictures on one page, show thumbnails etc. ! * make image.php "create" the image so that no-one can link ! your image to their page, make this behavior as an option * Multilingual * Database support * Web administration |
From: Ville K. <vk...@us...> - 2001-06-12 19:54:12
|
Update of /cvsroot/pview-php/Pview.php/images In directory usw-pr-cvs1:/tmp/cvs-serv21458/images Added Files: .htaccess Log Message: --- NEW FILE: .htaccess --- Options None |
From: Ville K. <vk...@us...> - 2001-06-12 19:54:12
|
Update of /cvsroot/pview-php/Pview.php/tools In directory usw-pr-cvs1:/tmp/cvs-serv21458/tools Added Files: .htaccess Log Message: --- NEW FILE: .htaccess --- Options None |
From: Ville K. <vk...@us...> - 2001-06-12 19:54:12
|
Update of /cvsroot/pview-php/Pview.php/templates/thumb In directory usw-pr-cvs1:/tmp/cvs-serv21458/templates/thumb Added Files: .htaccess Log Message: --- NEW FILE: .htaccess --- Options None |
From: Ville K. <vk...@us...> - 2001-06-12 19:54:12
|
Update of /cvsroot/pview-php/Pview.php/lib In directory usw-pr-cvs1:/tmp/cvs-serv21458/lib Added Files: .htaccess Log Message: --- NEW FILE: .htaccess --- Options None |
From: Ville K. <vk...@us...> - 2001-06-12 19:54:11
|
Update of /cvsroot/pview-php/Pview.php/templates/pco In directory usw-pr-cvs1:/tmp/cvs-serv21458/templates/pco Added Files: .htaccess Log Message: --- NEW FILE: .htaccess --- Options None |
From: Ville K. <vk...@us...> - 2001-06-12 19:54:11
|
Update of /cvsroot/pview-php/Pview.php/templates/index In directory usw-pr-cvs1:/tmp/cvs-serv21458/templates/index Added Files: .htaccess Log Message: --- NEW FILE: .htaccess --- Options None |
From: Ville K. <vk...@us...> - 2001-06-12 19:54:11
|
Update of /cvsroot/pview-php/Pview.php/templates/image In directory usw-pr-cvs1:/tmp/cvs-serv21458/templates/image Added Files: .htaccess Log Message: --- NEW FILE: .htaccess --- Options None |
From: Ville K. <vk...@us...> - 2001-06-12 18:46:13
|
Update of /cvsroot/pview-php/Pview.php/templates/image In directory usw-pr-cvs1:/tmp/cvs-serv6471/templates/image Modified Files: header.inc Log Message: Index: header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/image/header.inc,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** header.inc 2001/06/12 18:36:54 1.9 --- header.inc 2001/06/12 18:46:10 1.10 *************** *** 7,11 **** </tr> <tr> ! <td align="center"><?= $series[$pathi[s]][$pathi[i]][1] ?> <span class="pieni">pic <?= $pathi[i] ?>/<?= count($series[$pathi[s]])-1 ?></span></td> </tr> </table> --- 7,11 ---- </tr> <tr> ! <td align="center"><?= $series[$pathi[s]][$pathi[i]][1] ?> <span class="pieni">pic <?= $pathi[i] ?>/<?= $imagecount - 1 ?></span></td> </tr> </table> |
From: Ville K. <vk...@us...> - 2001-06-12 18:36:59
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv2320 Modified Files: image.php Log Message: move prev/index/next linkbar to lib/pv.php Index: image.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/image.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** image.php 2001/06/08 13:42:40 1.1 --- image.php 2001/06/12 18:36:53 1.2 *************** *** 22,27 **** include($config['Pview']['path']['template'] . '/common-header.inc'); ! $prev = $pathi[i] - 1; ! $next = $pathi[i] + 1; include($config['Pview']['path']['template'] . '/image/header.inc'); include($config['Pview']['path']['template'] . '/image/image.inc'); --- 22,26 ---- include($config['Pview']['path']['template'] . '/common-header.inc'); ! $imagecount = count($series[$pathi[s]]); include($config['Pview']['path']['template'] . '/image/header.inc'); include($config['Pview']['path']['template'] . '/image/image.inc'); |
From: Ville K. <vk...@us...> - 2001-06-12 18:36:59
|
Update of /cvsroot/pview-php/Pview.php/lib In directory usw-pr-cvs1:/tmp/cvs-serv2320/lib Modified Files: pv.php Log Message: move prev/index/next linkbar to lib/pv.php Index: pv.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/lib/pv.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** pv.php 2001/06/08 13:23:50 1.1 --- pv.php 2001/06/12 18:36:54 1.2 *************** *** 16,17 **** --- 16,40 ---- } } + + function prevnextlinks() { + global $pathi, $imagecount, $SCRIPT_NAME, $config; + $prev = $pathi[i] - 1; + $next = $pathi[i] + 1; + + if ($pathi[i] > 1) + echo '<a href="' . $SCRIPT_NAME . '/' . $pathi[s] . '/' . $prev . '/">'; + + echo 'Previous'; + if ($pathi[i] > 1) + echo '</a>'; + + echo ' <a href="' . $config['Pview']['path']['root'] . + '/thumb.php/' . $pathi[s] . '/">Index</a> '; + if ($pathi[i] < $c - 1) + echo '<a href="' . $SCRIPT_NAME . '/' . $pathi[s] . '/' . $next . '/">'; + + echo 'Next'; + + if ($pathi[i] < $c - 1) + echo '</a>'; + } |
From: Ville K. <vk...@us...> - 2001-06-12 18:36:58
|
Update of /cvsroot/pview-php/Pview.php/templates/image In directory usw-pr-cvs1:/tmp/cvs-serv2320/templates/image Modified Files: footer.inc header.inc Log Message: move prev/index/next linkbar to lib/pv.php Index: footer.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/image/footer.inc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** footer.inc 2001/06/11 18:37:04 1.7 --- footer.inc 2001/06/12 18:36:54 1.8 *************** *** 1,11 **** <table cellpadding="2" cellspacing="2" border="0" width="100%"> <tr> ! <td align="center"> ! <?php if ($pathi[i] > 1) { ! echo("<a href=\"" . $SCRIPT_NAME . "/" . $pathi[s] . "/" . $prev . "/\">"); } ?>Previous<?php ! if ($pathi[i] > 1) { echo("</a>"); } ?> <a ! href="<?= $config['Pview']['path']['root'] ?>/thumb.php/<?= $pathi[s] ?>/">Index</a> <?php ! if ($pathi[i] < count($series[$pathi[s]])-1) { ! echo("<a href=\"" . $SCRIPT_NAME . "/" . $pathi[s] . "/" . $next . "/\">"); } ?>Next<?php ! if ($pathi[i] < count($series[$pathi[s]])-1) { echo("</a>"); } ?><br> </td> </tr> --- 1,4 ---- <table cellpadding="2" cellspacing="2" border="0" width="100%"> <tr> ! <td align="center"><?php prevnextlinks(); ?><br> </td> </tr> Index: header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/image/header.inc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** header.inc 2001/06/11 18:37:04 1.8 --- header.inc 2001/06/12 18:36:54 1.9 *************** *** 4,15 **** </tr> <tr> ! <td align="center"> ! <?php if ($pathi[i] > 1) { ! echo("<a href=\"" . $SCRIPT_NAME . "/" . $pathi[s] . "/" . $prev . "/\">"); } ?>Previous<?php ! if ($pathi[i] > 1) { echo("</a>"); } ?> <a ! href="<?= $config['Pview']['path']['root'] ?>/thumb.php/<?= $pathi[s] ?>/">Index</a> <?php ! if ($pathi[i] < count($series[$pathi[s]])-1) { ! echo("<a href=\"" . $SCRIPT_NAME . "/" . $pathi[s] . "/" . $next . "/\">"); } ?>Next<?php ! if ($pathi[i] < count($series[$pathi[s]])-1) { echo("</a>"); } ?><br> </td> </tr> <tr> --- 4,8 ---- </tr> <tr> ! <td align="center"><?php prevnextlinks(); ?><br> </td> </tr> <tr> |
From: Ville K. <vk...@us...> - 2001-06-11 18:37:16
|
Update of /cvsroot/pview-php/Pview.php/templates/image In directory usw-pr-cvs1:/tmp/cvs-serv12299/templates/image Modified Files: footer.inc header.inc image.inc Log Message: fixing prev/index/next alignment Index: footer.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/image/footer.inc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** footer.inc 2001/06/08 13:42:40 1.6 --- footer.inc 2001/06/11 18:37:04 1.7 *************** *** 1,2 **** --- 1,3 ---- + <table cellpadding="2" cellspacing="2" border="0" width="100%"> <tr> <td align="center"> Index: header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/image/header.inc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** header.inc 2001/06/08 13:42:40 1.7 --- header.inc 2001/06/11 18:37:04 1.8 *************** *** 16,17 **** --- 16,18 ---- <td align="center"><?= $series[$pathi[s]][$pathi[i]][1] ?> <span class="pieni">pic <?= $pathi[i] ?>/<?= count($series[$pathi[s]])-1 ?></span></td> </tr> + </table> Index: image.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/image/image.inc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** image.inc 2001/06/08 13:23:50 1.5 --- image.inc 2001/06/11 18:37:04 1.6 *************** *** 1,2 **** --- 1,3 ---- + <table cellpadding="2" cellspacing="2" border="0" width="100%"> <tr> <td align="center"><img *************** *** 6,7 **** --- 7,9 ---- <td align="center"><?= $series[$pathi[s]][$pathi[i]][2] ?><br> </td> </tr> + </table> |
From: Ville K. <vk...@us...> - 2001-06-11 18:16:53
|
Update of /cvsroot/pview-php/Pview.php/doc In directory usw-pr-cvs1:/tmp/cvs-serv9881/doc Modified Files: CHANGES Log Message: in thumb view page title shows serie name, in image view serie name and short image description Index: CHANGES =================================================================== RCS file: /cvsroot/pview-php/Pview.php/doc/CHANGES,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** CHANGES 2001/06/11 17:15:44 1.3 --- CHANGES 2001/06/11 18:16:46 1.4 *************** *** 10,13 **** --- 10,15 ---- index, image.php just the image and thumb.php just thumbnails of series * add information of serie to thumb.php view + * in thumb view page title shows serie name, in image view serie name and + short image description * small design changes |