pview-php-commits Mailing List for Pview.php
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...> - 2002-02-08 21:18:18
|
Update of /cvsroot/pview-php/Pview.php/config In directory usw-pr-cvs1:/tmp/cvs-serv11301/config Modified Files: lang.php Log Message: imageprot: error page if directly linked Index: lang.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/config/lang.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** lang.php 6 Sep 2001 08:16:36 -0000 1.6 --- lang.php 8 Feb 2002 21:18:12 -0000 1.7 *************** *** 30,33 **** --- 30,35 ---- $lang['en']['conf']['title'] = 'User configuration for Pview.php'; + $lang['en']['image']['imageproterror'] = 'No direct linking to the image.'; + // fi == Finnish *************** *** 56,59 **** --- 58,63 ---- $lang['fi']['conf']['removed'] = 'Cookiet poistettu.'; $lang['fi']['conf']['title'] = 'Pview.php käyttäjäasetukset'; + + $lang['fi']['image']['imageproterror'] = 'Ei suoria linkkejä kuviin.'; ?> |
From: Ville K. <vk...@us...> - 2002-02-08 21:18:18
|
Update of /cvsroot/pview-php/Pview.php/templates/image In directory usw-pr-cvs1:/tmp/cvs-serv11301/templates/image Added Files: imageproterror.inc Log Message: imageprot: error page if directly linked --- NEW FILE: imageproterror.inc --- <div align='center'><?= $lang[$config['Pview']['deflang']]['image']['imageproterror'] ?></div> <p> |
From: Ville K. <vk...@us...> - 2002-02-08 21:18:17
|
Update of /cvsroot/pview-php/Pview.php/templates In directory usw-pr-cvs1:/tmp/cvs-serv11301/templates Modified Files: common-header.inc Log Message: imageprot: error page if directly linked Index: common-header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/common-header.inc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** common-header.inc 19 Nov 2001 10:11:16 -0000 1.6 --- common-header.inc 8 Feb 2002 21:18:12 -0000 1.7 *************** *** 9,18 **** $title = ''; $title .= $config['Pview']['title']['site']; ! if (!empty($pathi[s])) ! $title .= " - " . $series[$pathi[s]][0][0]; ! if (!empty($pathi[i]) AND !strstr($GLOBALS["SCRIPT_FILENAME"], "thumb.php")) ! $title .= " - " . $series[$pathi[s]][$pathi[i]][1]; ! if (stristr($GLOBALS["SCRIPT_NAME"], "pco.php")) ! $title .= " - " . $lang[$config['Pview']['deflang']]['conf']['title']; ?> <title><?= $title ?></title> --- 9,22 ---- $title = ''; $title .= $config['Pview']['title']['site']; ! if (isset($GLOBALS['cri'])) { ! $title .= " - Error"; ! } else { ! if (!empty($pathi[s])) ! $title .= " - " . $series[$pathi[s]][0][0]; ! if (!empty($pathi[i]) AND !strstr($GLOBALS["SCRIPT_FILENAME"], "thumb.php")) ! $title .= " - " . $series[$pathi[s]][$pathi[i]][1]; ! if (stristr($GLOBALS["SCRIPT_NAME"], "pco.php")) ! $title .= " - " . $lang[$config['Pview']['deflang']]['conf']['title']; ! } ?> <title><?= $title ?></title> |
From: Ville K. <vk...@us...> - 2002-02-08 21:18:17
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv11301 Modified Files: image.php Log Message: imageprot: error page if directly linked Index: image.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/image.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** image.php 8 Feb 2002 20:54:34 -0000 1.11 --- image.php 8 Feb 2002 21:18:12 -0000 1.12 *************** *** 29,33 **** $findin = 'http://' . $GLOBALS['SERVER_NAME'] . $config['Pview']['path']['root']; if (!stristr($GLOBALS['HTTP_REFERER'], $findin)) { ! //$img = exit; } --- 29,35 ---- $findin = 'http://' . $GLOBALS['SERVER_NAME'] . $config['Pview']['path']['root']; if (!stristr($GLOBALS['HTTP_REFERER'], $findin)) { ! include($config['Pview']['path']['template'] . '/common-header.inc'); ! include($config['Pview']['path']['template'] . '/image/imageproterror.inc'); ! include($config['Pview']['path']['template'] . '/common-footer.inc'); exit; } |
From: Ville K. <vk...@us...> - 2002-02-08 20:54:44
|
Update of /cvsroot/pview-php/Pview.php/doc In directory usw-pr-cvs1:/tmp/cvs-serv9763/doc Modified Files: README TODO Log Message: add 2002 copyright Index: README =================================================================== RCS file: /cvsroot/pview-php/Pview.php/doc/README,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** README 6 Sep 2001 08:26:09 -0000 1.8 --- README 8 Feb 2002 20:54:34 -0000 1.9 *************** *** 50,54 **** Development done with always latest unstable debian packages of Apache ! and PHP4 on Linux. Also tested with Apache 1.3.20 + PHP4.0.5 on Linux. ----------------------------------------------------------------------- --- 50,54 ---- Development done with always latest unstable debian packages of Apache ! and PHP4 on Linux. ----------------------------------------------------------------------- Index: TODO =================================================================== RCS file: /cvsroot/pview-php/Pview.php/doc/TODO,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -r1.17 -r1.18 *** TODO 6 Sep 2001 08:26:09 -0000 1.17 --- TODO 8 Feb 2002 20:54:34 -0000 1.18 *************** *** 4,8 **** * clean up that messy code (and try not do it anymore ;) - * thumb.php prev/next links -> images * add width and height options to <img> tags in thumb.php * add imageprot to thumb images --- 4,7 ---- *************** *** 13,15 **** * web administration * make it look nicer :) ! * maybe switch to xhtml? --- 12,14 ---- * web administration * make it look nicer :) ! * maybe switch to xhtml or something? |
From: Ville K. <vk...@us...> - 2002-02-08 20:54:43
|
Update of /cvsroot/pview-php/Pview.php/admin In directory usw-pr-cvs1:/tmp/cvs-serv9763/admin Modified Files: index.php Log Message: add 2002 copyright Index: index.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/admin/index.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** index.php 13 Dec 2001 19:43:11 -0000 1.3 --- index.php 8 Feb 2002 20:54:34 -0000 1.4 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001, 2002 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you |
From: Ville K. <vk...@us...> - 2002-02-08 20:54:43
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv9763 Modified Files: Pview.php image.php index.php pco.php thumb.php Log Message: add 2002 copyright Index: Pview.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/Pview.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -r1.18 -r1.19 *** Pview.php 13 Dec 2001 19:43:11 -0000 1.18 --- Pview.php 8 Feb 2002 20:54:34 -0000 1.19 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001, 2002 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you Index: image.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/image.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** image.php 13 Dec 2001 19:43:11 -0000 1.10 --- image.php 8 Feb 2002 20:54:34 -0000 1.11 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001, 2002 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you Index: index.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/index.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** index.php 13 Dec 2001 19:43:11 -0000 1.8 --- index.php 8 Feb 2002 20:54:34 -0000 1.9 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001, 2002 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you Index: pco.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/pco.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** pco.php 13 Dec 2001 19:43:11 -0000 1.14 --- pco.php 8 Feb 2002 20:54:34 -0000 1.15 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001, 2002 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you Index: thumb.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/thumb.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** thumb.php 13 Dec 2001 19:43:11 -0000 1.11 --- thumb.php 8 Feb 2002 20:54:34 -0000 1.12 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001, 2002 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you |
From: Ville K. <vk...@us...> - 2002-02-08 20:54:41
|
Update of /cvsroot/pview-php/Pview.php/lib In directory usw-pr-cvs1:/tmp/cvs-serv9763/lib Modified Files: pv.php Log Message: add 2002 copyright Index: pv.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/lib/pv.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** pv.php 13 Dec 2001 19:43:11 -0000 1.15 --- pv.php 8 Feb 2002 20:54:34 -0000 1.16 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001, 2002 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you |
From: Ville K. <vk...@us...> - 2001-12-13 19:43:16
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv31540 Modified Files: Pview.php image.php index.php pco.php thumb.php Log Message: sf email to file headers Index: Pview.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/Pview.php,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -r1.17 -r1.18 *** Pview.php 2001/11/18 08:31:42 1.17 --- Pview.php 2001/12/13 19:43:11 1.18 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@ka...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you Index: image.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/image.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** image.php 2001/11/18 08:31:42 1.9 --- image.php 2001/12/13 19:43:11 1.10 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@ka...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you Index: index.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/index.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** index.php 2001/11/18 08:31:42 1.7 --- index.php 2001/12/13 19:43:11 1.8 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@ka...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you Index: pco.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/pco.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** pco.php 2001/11/18 08:31:42 1.13 --- pco.php 2001/12/13 19:43:11 1.14 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@ka...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you Index: thumb.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/thumb.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** thumb.php 2001/11/18 08:31:42 1.10 --- thumb.php 2001/12/13 19:43:11 1.11 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@ka...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you |
From: Ville K. <vk...@us...> - 2001-12-13 19:43:16
|
Update of /cvsroot/pview-php/Pview.php/lib In directory usw-pr-cvs1:/tmp/cvs-serv31540/lib Modified Files: pv.php Log Message: sf email to file headers Index: pv.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/lib/pv.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** pv.php 2001/11/18 08:31:42 1.14 --- pv.php 2001/12/13 19:43:11 1.15 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@ka...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you |
From: Ville K. <vk...@us...> - 2001-12-13 19:43:16
|
Update of /cvsroot/pview-php/Pview.php/admin In directory usw-pr-cvs1:/tmp/cvs-serv31540/admin Modified Files: index.php Log Message: sf email to file headers Index: index.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/admin/index.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** index.php 2001/11/18 08:31:42 1.2 --- index.php 2001/12/13 19:43:11 1.3 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@ka...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001 Ville Koskinen <vk...@us...> * * See the enclosed file COPYING for license information (GPL). If you |
From: Ville K. <vk...@us...> - 2001-12-13 19:43:16
|
Update of /cvsroot/pview-php/Pview.php/config In directory usw-pr-cvs1:/tmp/cvs-serv31540/config Modified Files: series.php Log Message: sf email to file headers Index: series.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/config/series.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** series.php 2001/11/18 08:31:42 1.10 --- series.php 2001/12/13 19:43:11 1.11 *************** *** 10,14 **** "test" => array( ! array("Sample images for Pview.php", "2001", "Helsinki, Finland", "This is a longer description", "© <a href=\"mailto:bl...@ka...\">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"), --- 10,14 ---- "test" => array( ! array("Sample images for Pview.php", "2001", "Helsinki, Finland", "This is a longer description", "© <a href=\"mailto:vk...@us...\">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"), *************** *** 20,24 **** "remotetest" => array( ! array("Sample image test for remote site", "2001", "Helsinki, Finland", "Loooong desc", "© <a href=\"mailto:bl...@ka...\">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"), --- 20,24 ---- "remotetest" => array( ! array("Sample image test for remote site", "2001", "Helsinki, Finland", "Loooong desc", "© <a href=\"mailto:vk...@us...\">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"), |
From: Ville K. <vk...@us...> - 2001-11-19 10:11:19
|
Update of /cvsroot/pview-php/Pview.php/templates In directory usw-pr-cvs1:/tmp/cvs-serv25549/templates Modified Files: common-header.inc Log Message: had a bug in title generation Index: common-header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/common-header.inc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** common-header.inc 2001/09/10 14:00:25 1.5 --- common-header.inc 2001/11/19 10:11:16 1.6 *************** *** 11,15 **** if (!empty($pathi[s])) $title .= " - " . $series[$pathi[s]][0][0]; ! if (!empty($pathi[i])) $title .= " - " . $series[$pathi[s]][$pathi[i]][1]; if (stristr($GLOBALS["SCRIPT_NAME"], "pco.php")) --- 11,15 ---- if (!empty($pathi[s])) $title .= " - " . $series[$pathi[s]][0][0]; ! if (!empty($pathi[i]) AND !strstr($GLOBALS["SCRIPT_FILENAME"], "thumb.php")) $title .= " - " . $series[$pathi[s]][$pathi[i]][1]; if (stristr($GLOBALS["SCRIPT_NAME"], "pco.php")) |
From: Ville K. <vk...@us...> - 2001-11-18 08:31:46
|
Update of /cvsroot/pview-php/Pview.php/config In directory usw-pr-cvs1:/tmp/cvs-serv24747/config Modified Files: series.php Log Message: changing all fiiu.org -> kaapeli.net Index: series.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/config/series.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** series.php 2001/08/21 19:47:20 1.9 --- series.php 2001/11/18 08:31:42 1.10 *************** *** 10,14 **** "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"), --- 10,14 ---- "test" => array( ! array("Sample images for Pview.php", "2001", "Helsinki, Finland", "This is a longer description", "© <a href=\"mailto:bl...@ka...\">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"), *************** *** 20,24 **** "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"), --- 20,24 ---- "remotetest" => array( ! array("Sample image test for remote site", "2001", "Helsinki, Finland", "Loooong desc", "© <a href=\"mailto:bl...@ka...\">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"), |
From: Ville K. <vk...@us...> - 2001-11-18 08:31:46
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv24747 Modified Files: Pview.php image.php index.php pco.php thumb.php Log Message: changing all fiiu.org -> kaapeli.net Index: Pview.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/Pview.php,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** Pview.php 2001/09/06 08:16:36 1.16 --- Pview.php 2001/11/18 08:31:42 1.17 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@fi...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@ka...> * * See the enclosed file COPYING for license information (GPL). If you Index: image.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/image.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** image.php 2001/09/10 13:43:19 1.8 --- image.php 2001/11/18 08:31:42 1.9 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@fi...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@ka...> * * See the enclosed file COPYING for license information (GPL). If you Index: index.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/index.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** index.php 2001/08/18 20:21:05 1.6 --- index.php 2001/11/18 08:31:42 1.7 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@fi...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@ka...> * * See the enclosed file COPYING for license information (GPL). If you Index: pco.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/pco.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** pco.php 2001/09/06 08:52:35 1.12 --- pco.php 2001/11/18 08:31:42 1.13 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@fi...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@ka...> * * See the enclosed file COPYING for license information (GPL). If you Index: thumb.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/thumb.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** thumb.php 2001/09/10 13:43:19 1.9 --- thumb.php 2001/11/18 08:31:42 1.10 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@fi...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@ka...> * * See the enclosed file COPYING for license information (GPL). If you |
From: Ville K. <vk...@us...> - 2001-11-18 08:31:46
|
Update of /cvsroot/pview-php/Pview.php/admin In directory usw-pr-cvs1:/tmp/cvs-serv24747/admin Modified Files: index.php Log Message: changing all fiiu.org -> kaapeli.net Index: index.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/admin/index.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** index.php 2001/06/11 14:29:24 1.1 --- index.php 2001/11/18 08:31:42 1.2 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@fi...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@ka...> * * See the enclosed file COPYING for license information (GPL). If you |
From: Ville K. <vk...@us...> - 2001-11-18 08:31:46
|
Update of /cvsroot/pview-php/Pview.php/tools In directory usw-pr-cvs1:/tmp/cvs-serv24747/tools Modified Files: convert.sh Log Message: changing all fiiu.org -> kaapeli.net Index: convert.sh =================================================================== RCS file: /cvsroot/pview-php/Pview.php/tools/convert.sh,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** convert.sh 2001/08/21 19:05:46 1.3 --- convert.sh 2001/11/18 08:31:42 1.4 *************** *** 3,7 **** # $Id$ ! # Changed by Ville Koskinen <bl...@fi...> # for Pview.php (http://pview-php.sourceforge.net/) # Changed by Maarten den Braber <md...@tw...> --- 3,7 ---- # $Id$ ! # Changed by Ville Koskinen <bl...@ka...> # for Pview.php (http://pview-php.sourceforge.net/) # Changed by Maarten den Braber <md...@tw...> |
From: Ville K. <vk...@us...> - 2001-11-18 08:31:46
|
Update of /cvsroot/pview-php/Pview.php/lib In directory usw-pr-cvs1:/tmp/cvs-serv24747/lib Modified Files: pv.php Log Message: changing all fiiu.org -> kaapeli.net Index: pv.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/lib/pv.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** pv.php 2001/09/10 13:43:19 1.13 --- pv.php 2001/11/18 08:31:42 1.14 *************** *** 3,7 **** * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@fi...> * * See the enclosed file COPYING for license information (GPL). If you --- 3,7 ---- * $Id$ * ! * Copyright 2001 Ville Koskinen <bl...@ka...> * * See the enclosed file COPYING for license information (GPL). If you |
From: Ville K. <vk...@us...> - 2001-09-10 14:07:37
|
Update of /cvsroot/pview-php/Pview.php/templates In directory usw-pr-cvs1:/tmp/cvs-serv4170/templates Modified Files: common-footer.inc Log Message: change sf.net -> sourceforge.net Index: common-footer.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/common-footer.inc,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** common-footer.inc 2001/09/06 09:02:33 1.14 --- common-footer.inc 2001/09/10 14:07:34 1.15 *************** *** 4,8 **** [ <a href="<?= $config['Pview']['path']['root'] ?>/Pview.php/"><?= $config['Pview']['title']['site'] ?></a> | <a href="<?= $config['Pview']['path']['root'] ?>/pco.php"><?= $lang[$config['Pview']['deflang']]['gen']['conf'] ?></a> ]<br> ! [ <b><a href="http://pview-php.sf.net/">Pview.php <?= $config['Pview']['version'] ?></a></b> ]</td> </tr> </table> --- 4,8 ---- [ <a href="<?= $config['Pview']['path']['root'] ?>/Pview.php/"><?= $config['Pview']['title']['site'] ?></a> | <a href="<?= $config['Pview']['path']['root'] ?>/pco.php"><?= $lang[$config['Pview']['deflang']]['gen']['conf'] ?></a> ]<br> ! [ <b><a href="http://pview-php.sourceforge.net/">Pview.php <?= $config['Pview']['version'] ?></a></b> ]</td> </tr> </table> |
From: Ville K. <vk...@us...> - 2001-09-10 14:01:56
|
Update of /cvsroot/pview-php/Pview.php/templates/pco In directory usw-pr-cvs1:/tmp/cvs-serv2575/templates/pco Modified Files: pco.inc Log Message: pco.php select boxes now align="right" instead align="center", looks better imo. Index: pco.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/pco/pco.inc,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** pco.inc 2001/09/06 09:02:33 1.13 --- pco.inc 2001/09/10 14:01:53 1.14 *************** *** 5,9 **** <tr> <td><?= $lang[$config['Pview']['deflang']]['conf']['colview'] ?></td> ! <td align="center"><select class="inputbox" name="form_columns"> <?php for ($num = 1; $num < 10; $num++) { echo ' <option'; --- 5,9 ---- <tr> <td><?= $lang[$config['Pview']['deflang']]['conf']['colview'] ?></td> ! <td align="right"><select class="inputbox" name="form_columns"> <?php for ($num = 1; $num < 10; $num++) { echo ' <option'; *************** *** 16,20 **** <tr> <td><?= $lang[$config['Pview']['deflang']]['conf']['rowview'] ?></td> ! <td align="center"><select class="inputbox" name="form_rows"> <?php for ($num = 0; $num < 10; $num++) { echo ' <option'; --- 16,20 ---- <tr> <td><?= $lang[$config['Pview']['deflang']]['conf']['rowview'] ?></td> ! <td align="right"><select class="inputbox" name="form_rows"> <?php for ($num = 0; $num < 10; $num++) { echo ' <option'; *************** *** 27,31 **** <tr> <td><?= $lang[$config['Pview']['deflang']]['conf']['language'] ?></td> ! <td align="center"><select class="inputbox" name="form_lang"> <?php foreach ($config['Pview']['lang'] as $key => $val) { $sel = ($key == $config['Pview']['deflang']) ? ' selected="selected"' : ''; --- 27,31 ---- <tr> <td><?= $lang[$config['Pview']['deflang']]['conf']['language'] ?></td> ! <td align="right"><select class="inputbox" name="form_lang"> <?php foreach ($config['Pview']['lang'] as $key => $val) { $sel = ($key == $config['Pview']['deflang']) ? ' selected="selected"' : ''; |
From: Ville K. <vk...@us...> - 2001-09-10 14:00:28
|
Update of /cvsroot/pview-php/Pview.php/templates In directory usw-pr-cvs1:/tmp/cvs-serv2097/templates Modified Files: common-header.inc Log Message: pco.php now has a better <title> Index: common-header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/common-header.inc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** common-header.inc 2001/07/18 08:53:56 1.4 --- common-header.inc 2001/09/10 14:00:25 1.5 *************** *** 13,17 **** if (!empty($pathi[i])) $title .= " - " . $series[$pathi[s]][$pathi[i]][1]; ! ?> <title><?= $title ?></title> --- 13,18 ---- if (!empty($pathi[i])) $title .= " - " . $series[$pathi[s]][$pathi[i]][1]; ! if (stristr($GLOBALS["SCRIPT_NAME"], "pco.php")) ! $title .= " - " . $lang[$config['Pview']['deflang']]['conf']['title']; ?> <title><?= $title ?></title> |
From: Ville K. <vk...@us...> - 2001-09-10 13:59:33
|
Update of /cvsroot/pview-php/Pview.php/doc In directory usw-pr-cvs1:/tmp/cvs-serv1981/doc Modified Files: CHANGES Log Message: update CHANGES Index: CHANGES =================================================================== RCS file: /cvsroot/pview-php/Pview.php/doc/CHANGES,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -r1.19 -r1.20 *** CHANGES 2001/09/06 09:05:14 1.19 --- CHANGES 2001/09/10 13:59:30 1.20 *************** *** 11,14 **** --- 11,15 ---- work right if images were in remote location * adding language config option + * thumb.php prev/next links to images * tweak some html code |
From: Ville K. <vk...@us...> - 2001-09-10 13:43:24
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv29339 Modified Files: image.php thumb.php Log Message: thumb.php prev/next links to images Index: image.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/image.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** image.php 2001/09/06 08:16:36 1.7 --- image.php 2001/09/10 13:43:19 1.8 *************** *** 24,28 **** // if $config['Pview']['imageprot']['on'] is 1 then "create" the image, ! // (currently works only with jpegs!) // else just normally show the image if (isset($GLOBALS['cri'])) { --- 24,28 ---- // if $config['Pview']['imageprot']['on'] is 1 then "create" the image, ! // (works only with jpeg, gif and png) // else just normally show the image if (isset($GLOBALS['cri'])) { Index: thumb.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/thumb.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** thumb.php 2001/09/06 08:52:35 1.8 --- thumb.php 2001/09/10 13:43:19 1.9 *************** *** 20,29 **** cookieval(); - // if user has used pco.php to configure his thumb view, use those values - if (isset($Pviewphpcookie[columns]) AND $Pviewphpcookie[columns] >= 1 AND $Pviewphpcookie[columns] <= 9) - $config['Pview']['layout']['columns'] = $Pviewphpcookie[columns]; - if (isset($Pviewphpcookie[rows]) AND $Pviewphpcookie[columns] >= 0 AND $Pviewphpcookie[columns] <= 9) - $config['Pview']['layout']['rows'] = $Pviewphpcookie[rows]; - // explode $GLOBALS['PATH_INFO'] $pathi = expl_pathi(); --- 20,23 ---- *************** *** 31,35 **** include($config['Pview']['path']['template'] . '/common-header.inc'); ! $tr = 1; $rows = 0; $imagecount = count($series[$pathi[s]]); --- 25,29 ---- include($config['Pview']['path']['template'] . '/common-header.inc'); ! $tr = 0; $rows = 0; $start = 0; $imagecount = count($series[$pathi[s]]); *************** *** 49,56 **** if ($rows == $config['Pview']['layout']['rows']) break; } ! if ($tr == "0") echo(" </tr>\n <tr>\n"); include($config['Pview']['path']['template'] . '/thumb/thumb.inc'); ! $kuvaidnro++; $tr++; ! if ($tr == $config['Pview']['layout']['columns'] + 1) { $tr = 0; $rows++; } --- 43,50 ---- if ($rows == $config['Pview']['layout']['rows']) break; } ! if ($tr == 0 AND $start > 0) echo(" </tr>\n <tr>\n"); include($config['Pview']['path']['template'] . '/thumb/thumb.inc'); ! $kuvaidnro++; $tr++; $start++; ! if ($tr == $config['Pview']['layout']['columns']) { $tr = 0; $rows++; } |
From: Ville K. <vk...@us...> - 2001-09-10 13:43:24
|
Update of /cvsroot/pview-php/Pview.php/templates/thumb In directory usw-pr-cvs1:/tmp/cvs-serv29339/templates/thumb Modified Files: footer.inc Log Message: thumb.php prev/next links to images Index: footer.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/thumb/footer.inc,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** footer.inc 2001/09/06 09:02:34 1.14 --- footer.inc 2001/09/10 13:43:19 1.15 *************** *** 9,34 **** <td align="center" colspan="<?= $config['Pview']['layout']['columns'] ?>"> ! <?php $prev = $pathi[i] - 1; ! $next = $pathi[i] + 1; ! ! echo '<span class="pieni">'; ! if ($pathi[i] >= 1) ! echo '<a href="' . $SCRIPT_NAME . '/' . $pathi[s] . '/' . $prev . '/">'; ! ! echo $lang[$config['Pview']['deflang']]['gen']['Prev']; ! 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 $lang[$config['Pview']['deflang']]['gen']['Next']; ! ! if (($pathi[i] = 0) OR ($imagecount - 1 > $kuvaidnro - 1)) ! echo '</a>'; ! echo '</span>'; ! ?> </td> --- 9,13 ---- <td align="center" colspan="<?= $config['Pview']['layout']['columns'] ?>"> ! <?php prevnextlinksthu(); ?> </td> |
From: Ville K. <vk...@us...> - 2001-09-10 13:43:23
|
Update of /cvsroot/pview-php/Pview.php/lib In directory usw-pr-cvs1:/tmp/cvs-serv29339/lib Modified Files: pv.php Log Message: thumb.php prev/next links to images Index: pv.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/lib/pv.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** pv.php 2001/09/06 08:16:36 1.12 --- pv.php 2001/09/10 13:43:19 1.13 *************** *** 51,54 **** --- 51,78 ---- // + // create the prev/next links on thumb.php + // + function prevnextlinksthu() { + global $pathi, $imagecount, $SCRIPT_NAME, $config, $lang, $kuvaidnro; + $prev = $pathi[i] - 1; + $next = $pathi[i] + 1; + + echo '<span class="pieni">'; + if ($pathi[i] >= 1) { + echo '<a href="' . $SCRIPT_NAME . '/' . $pathi[s] . '/' . $prev . '/"><img src="' . $config['Pview']['path']['graphics'] . '/arrowl.gif" width="10" height="11" border="0" alt="' . $lang[$config['Pview']['deflang']]['gen']['Prev'] . '"></a>'; + } else { + echo '<img src="' . $config['Pview']['path']['graphics'] . '/10x11emp.gif" width="10" height="11" border="0" alt="">'; + } + echo '<img src="' . $config['Pview']['path']['graphics'] . '/10x11emp.gif" width="10" height="11" border="0" alt=" ">'; + + if (($pathi[i] = 0) OR ($imagecount - 1 > $kuvaidnro - 1)) { + echo '<a href="' . $SCRIPT_NAME . '/' . $pathi[s] . '/' . $next . '/"><img src="' . $config['Pview']['path']['graphics'] . '/arrowr.gif" width="10" height="11" border="0" alt="' . $lang[$config['Pview']['deflang']]['gen']['Next'] . '"></a>'; + } else { + echo '<img src="' . $config['Pview']['path']['graphics'] . '/10x11emp.gif" width="10" height="11" border="0" alt="">'; + } + echo '</span>'; + } + + // // create image link depending the value of $config['Pview']['imageprot']['on'] // *************** *** 79,84 **** function cookieval() { global $config, $$config['Pview']['cookiename']; ! if (isset ($Pviewphp)) { ! $unsercookie = unserialize($Pviewphp); if (isset($unsercookie[col]) AND $unsercookie[col] >= 1 AND $unsercookie[col] <= 9) $config['Pview']['layout']['columns'] = $unsercookie[col]; --- 103,108 ---- function cookieval() { global $config, $$config['Pview']['cookiename']; ! if (isset ($$config['Pview']['cookiename'])) { ! $unsercookie = unserialize($$config['Pview']['cookiename']); if (isset($unsercookie[col]) AND $unsercookie[col] >= 1 AND $unsercookie[col] <= 9) $config['Pview']['layout']['columns'] = $unsercookie[col]; *************** *** 88,90 **** $config['Pview']['deflang'] = $unsercookie[lang]; } ! } \ No newline at end of file --- 112,114 ---- $config['Pview']['deflang'] = $unsercookie[lang]; } ! } |