pview-php-commits Mailing List for Pview.php (Page 4)
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-09 08:26:06
|
Update of /cvsroot/pview-php/Pview.php/config In directory usw-pr-cvs1:/tmp/cvs-serv18545/config Modified Files: lang.php Log Message: more multilingual stuff. moving cookie remove to pco.php. Index: lang.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/config/lang.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** lang.php 2001/07/08 17:03:47 1.1 --- lang.php 2001/07/09 08:26:01 1.2 *************** *** 9,14 **** $lang['en']['index']['nro'] = 'how much'; // number of images on index $lang['en']['index']['ldesc'] = 'desc'; // long desc on index ! $lang['en']['index']['images'] = 'images'; ! $lang['en']['gen']['index'] = 'index'; $lang['en']['gen']['conf'] = 'configure'; ?> --- 9,19 ---- $lang['en']['index']['nro'] = 'how much'; // number of images on index $lang['en']['index']['ldesc'] = 'desc'; // long desc on index ! $lang['en']['gen']['image'] = 'image'; ! $lang['en']['gen']['images'] = 'images'; ! $lang['en']['gen']['index'] = 'index'; ! $lang['en']['gen']['Index'] = 'Index'; $lang['en']['gen']['conf'] = 'configure'; + $lang['en']['gen']['Prev'] = 'Previous'; + $lang['en']['gen']['Next'] = 'Next'; + ?> |
From: Ville K. <vk...@us...> - 2001-07-09 08:26:06
|
Update of /cvsroot/pview-php/Pview.php/templates/image In directory usw-pr-cvs1:/tmp/cvs-serv18545/templates/image Modified Files: header.inc Log Message: more multilingual stuff. moving cookie remove to pco.php. Index: header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/image/header.inc,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** header.inc 2001/06/12 18:46:10 1.10 --- header.inc 2001/07/09 08:26:01 1.11 *************** *** 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> --- 7,11 ---- </tr> <tr> ! <td align="center"><?= $series[$pathi[s]][$pathi[i]][1] ?> <span class="pieni"><?= $lang[$config['Pview']['lang']]['gen']['image'] ?> <?= $pathi[i] ?>/<?= $imagecount - 1 ?></span></td> </tr> </table> |
From: Ville K. <vk...@us...> - 2001-07-09 08:26:06
|
Update of /cvsroot/pview-php/Pview.php/templates/index In directory usw-pr-cvs1:/tmp/cvs-serv18545/templates/index Modified Files: series.inc Log Message: more multilingual stuff. moving cookie remove to pco.php. Index: series.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/index/series.inc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** series.inc 2001/07/08 17:03:48 1.5 --- series.inc 2001/07/09 08:26:01 1.6 *************** *** 6,10 **** <td><?= $series[$key][0][1] ?></td> <td width="5"> </td> ! <td><?= count($series[$key])-1 ?> <?= $lang[$config['Pview']['lang']]['index']['images'] ?></td> <td width="5"> </td> <td><?= $series[$key][0][3] ?></td> --- 6,10 ---- <td><?= $series[$key][0][1] ?></td> <td width="5"> </td> ! <td><?= count($series[$key])-1 ?> <?= $lang[$config['Pview']['lang']]['gen']['images'] ?></td> <td width="5"> </td> <td><?= $series[$key][0][3] ?></td> |
From: Ville K. <vk...@us...> - 2001-07-09 08:26:06
|
Update of /cvsroot/pview-php/Pview.php/templates/thumb In directory usw-pr-cvs1:/tmp/cvs-serv18545/templates/thumb Modified Files: footer.inc Log Message: more multilingual stuff. moving cookie remove to pco.php. Index: footer.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/thumb/footer.inc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** footer.inc 2001/07/08 11:57:48 1.7 --- footer.inc 2001/07/09 08:26:01 1.8 *************** *** 4,8 **** if (!empty($config['Pview']['layout']['rows'])) { - #if ($pathi[i] >= 1 AND ($pathi[i] = 0) OR ($imagecount - 1 > $kuvaidnro - 1)) { $prev = $pathi[i] - 1; $next = $pathi[i] + 1; --- 4,7 ---- *************** *** 11,15 **** echo '<a href="' . $SCRIPT_NAME . '/' . $pathi[s] . '/' . $prev . '/">'; ! echo 'Previous'; if ($pathi[i] >= 1) echo '</a>'; --- 10,14 ---- echo '<a href="' . $SCRIPT_NAME . '/' . $pathi[s] . '/' . $prev . '/">'; ! echo $lang[$config['Pview']['lang']]['gen']['Prev']; if ($pathi[i] >= 1) echo '</a>'; *************** *** 20,28 **** echo '<a href="' . $SCRIPT_NAME . '/' . $pathi[s] . '/' . $next . '/">'; ! echo 'Next'; if (($pathi[i] = 0) OR ($imagecount - 1 > $kuvaidnro - 1)) echo '</a>'; - #} } ?> --- 19,26 ---- echo '<a href="' . $SCRIPT_NAME . '/' . $pathi[s] . '/' . $next . '/">'; ! echo $lang[$config['Pview']['lang']]['gen']['Next']; if (($pathi[i] = 0) OR ($imagecount - 1 > $kuvaidnro - 1)) echo '</a>'; } ?> |
From: Ville K. <vk...@us...> - 2001-07-08 17:03:52
|
Update of /cvsroot/pview-php/Pview.php/doc In directory usw-pr-cvs1:/tmp/cvs-serv12597/doc Modified Files: TODO Log Message: multilingual stuff Index: TODO =================================================================== RCS file: /cvsroot/pview-php/Pview.php/doc/TODO,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** TODO 2001/07/06 10:51:41 1.9 --- TODO 2001/07/08 17:03:47 1.10 *************** *** 5,9 **** * clean up that messy code! * fix title generation - * make pco.php shout out an error when entering incorrect values * config section for users, show all big pictures on one page, show thumbnails etc. --- 5,8 ---- |
From: Ville K. <vk...@us...> - 2001-07-08 17:03:52
|
Update of /cvsroot/pview-php/Pview.php/templates In directory usw-pr-cvs1:/tmp/cvs-serv12597/templates Modified Files: common-footer.inc Log Message: multilingual stuff Index: common-footer.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/common-footer.inc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** common-footer.inc 2001/06/08 13:42:40 1.8 --- common-footer.inc 2001/07/08 17:03:47 1.9 *************** *** 3,8 **** <tr> <td align="center" class="pieni"> ! [ <a href="<?= $config['Pview']['path']['root'] ?>/Pview.php/"><?= $config['Pview']['title']['site'] ?> frontpage</a> ! | <a href="<?= $config['Pview']['path']['root'] ?>/pco.php">configure</a> ]<br> <a href="http://pview-php.sf.net/">Pview.php <?= $config['Pview']['version'] ?></a></td> </tr> --- 3,8 ---- <tr> <td align="center" class="pieni"> ! [ <a href="<?= $config['Pview']['path']['root'] ?>/Pview.php/"><?= $config['Pview']['title']['site'] . ' ' . $lang[$config['Pview']['lang']]['gen']['index'] ?></a> ! | <a href="<?= $config['Pview']['path']['root'] ?>/pco.php"><?= $lang[$config['Pview']['lang']]['gen']['conf'] ?></a> ]<br> <a href="http://pview-php.sf.net/">Pview.php <?= $config['Pview']['version'] ?></a></td> </tr> |
From: Ville K. <vk...@us...> - 2001-07-08 17:03:52
|
Update of /cvsroot/pview-php/Pview.php/templates/index In directory usw-pr-cvs1:/tmp/cvs-serv12597/templates/index Modified Files: header.inc series.inc Log Message: multilingual stuff Index: header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/index/header.inc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** header.inc 2001/07/08 12:00:34 1.4 --- header.inc 2001/07/08 17:03:48 1.5 *************** *** 7,18 **** </tr> <tr> ! <td class="bold">what</td> <td width="5"> </td> ! <td class="bold">where</td> <td width="5"> </td> ! <td class="bold">when</td> <td width="5"> </td> ! <td class="bold">how much</td> <td width="5"> </td> ! <td class="bold">desc</td> </tr> --- 7,18 ---- </tr> <tr> ! <td class="bold"><?= $lang[$config['Pview']['lang']]['index']['sdesc'] ?></td> <td width="5"> </td> ! <td class="bold"><?= $lang[$config['Pview']['lang']]['index']['place'] ?></td> <td width="5"> </td> ! <td class="bold"><?= $lang[$config['Pview']['lang']]['index']['date'] ?></td> <td width="5"> </td> ! <td class="bold"><?= $lang[$config['Pview']['lang']]['index']['nro'] ?></td> <td width="5"> </td> ! <td class="bold"><?= $lang[$config['Pview']['lang']]['index']['ldesc'] ?></td> </tr> Index: series.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/index/series.inc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** series.inc 2001/07/08 12:00:34 1.4 --- series.inc 2001/07/08 17:03:48 1.5 *************** *** 6,10 **** <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> --- 6,10 ---- <td><?= $series[$key][0][1] ?></td> <td width="5"> </td> ! <td><?= count($series[$key])-1 ?> <?= $lang[$config['Pview']['lang']]['index']['images'] ?></td> <td width="5"> </td> <td><?= $series[$key][0][3] ?></td> |
From: Ville K. <vk...@us...> - 2001-07-08 17:03:52
|
Update of /cvsroot/pview-php/Pview.php/config In directory usw-pr-cvs1:/tmp/cvs-serv12597/config Modified Files: config.php Added Files: lang.php Log Message: multilingual stuff --- NEW FILE: lang.php --- <?php /* * $Id: lang.php,v 1.1 2001/07/08 17:03:47 vko Exp $ */ $lang['en']['index']['sdesc'] = 'what'; // short desc on index $lang['en']['index']['place'] = 'where'; // place on index $lang['en']['index']['date'] = 'when'; // date on index $lang['en']['index']['nro'] = 'how much'; // number of images on index $lang['en']['index']['ldesc'] = 'desc'; // long desc on index $lang['en']['index']['images'] = 'images'; $lang['en']['gen']['index'] = 'index'; $lang['en']['gen']['conf'] = 'configure'; ?> Index: config.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/config/config.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** config.php 2001/07/06 10:50:15 1.9 --- config.php 2001/07/08 17:03:47 1.10 *************** *** 22,25 **** --- 22,28 ---- $config['Pview']['layout']['rows'] = '3'; + # language to use + $config['Pview']['lang'] = 'en'; + # Pview.php version number, no need to change unless you want to fool someone $config['Pview']['version'] = '0.2'; |
From: Ville K. <vk...@us...> - 2001-07-08 17:03:51
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv12597 Modified Files: Pview.php Log Message: multilingual stuff Index: Pview.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/Pview.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** Pview.php 2001/06/08 13:42:40 1.13 --- Pview.php 2001/07/08 17:03:47 1.14 *************** *** 13,16 **** --- 13,17 ---- include_once 'config/config.php'; include_once 'config/series.php'; + include_once 'config/lang.php'; /* include common functions */ |
From: Ville K. <vk...@us...> - 2001-07-08 12:00:36
|
Update of /cvsroot/pview-php/Pview.php/templates/index In directory usw-pr-cvs1:/tmp/cvs-serv6904/templates/index Modified Files: header.inc series.inc Log Message: where did that <tr> go? Index: header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/index/header.inc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** header.inc 2001/07/08 11:57:48 1.3 --- header.inc 2001/07/08 12:00:34 1.4 *************** *** 6,10 **** <td colspan="9"> </td> </tr> ! <td class="bold">what</td> <td width="5"> </td> --- 6,10 ---- <td colspan="9"> </td> </tr> ! <tr> <td class="bold">what</td> <td width="5"> </td> Index: series.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/index/series.inc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** series.inc 2001/06/08 13:42:40 1.3 --- series.inc 2001/07/08 12:00:34 1.4 *************** *** 1,3 **** - <tr> <td><a href="<?= $config['Pview']['path']['root'] ?>/thumb.php/<?= $key ?>/"><?= $series[$key][0][0] ?></a></td> --- 1,2 ---- |
From: Ville K. <vk...@us...> - 2001-07-08 11:57:53
|
Update of /cvsroot/pview-php/Pview.php/templates/thumb In directory usw-pr-cvs1:/tmp/cvs-serv5698/templates/thumb Modified Files: footer.inc header.inc Log Message: design changes, pco.php inputboxes -> option lists Index: footer.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/thumb/footer.inc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** footer.inc 2001/06/14 08:50:00 1.6 --- footer.inc 2001/07/08 11:57:48 1.7 *************** *** 4,7 **** --- 4,8 ---- if (!empty($config['Pview']['layout']['rows'])) { + #if ($pathi[i] >= 1 AND ($pathi[i] = 0) OR ($imagecount - 1 > $kuvaidnro - 1)) { $prev = $pathi[i] - 1; $next = $pathi[i] + 1; *************** *** 23,26 **** --- 24,28 ---- 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.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** header.inc 2001/06/14 08:50:00 1.7 --- header.inc 2001/07/08 11:57:48 1.8 *************** *** 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] ?><?php if (!empty($series[$pathi[s]][0][3])) echo '<br><span class="pieni">(' . $series[$pathi[s]][0][3] . ')</span></td>'; ?> --- 2,6 ---- <tr> <td align="center" colspan="<?= $config['Pview']['layout']['columns'] ?>"><span class="pieni"><?= $series[$pathi[s]][0][4] ?></span><p> ! <span class="bold"><?= $series[$pathi[s]][0][0] ?></span><?php if (!empty($series[$pathi[s]][0][3])) echo '<br><span class="pieni">(' . $series[$pathi[s]][0][3] . ')</span></td>'; ?> |
From: Ville K. <vk...@us...> - 2001-07-08 11:57:53
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv5698 Modified Files: Pview.css Log Message: design changes, pco.php inputboxes -> option lists Index: Pview.css =================================================================== RCS file: /cvsroot/pview-php/Pview.php/Pview.css,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** Pview.css 2001/07/06 08:14:11 1.6 --- Pview.css 2001/07/08 11:57:47 1.7 *************** *** 3,7 **** BODY { background-color: #FFFFFF; color: #000000; - font-weight: bold; font-size: 10pt; font-family: Arial, sans-serif; } --- 3,6 ---- *************** *** 9,13 **** { background-color: #FFFFFF; color: #000000; - font-weight: bold; font-size: 10pt; font-family: Arial, sans-serif; } --- 8,11 ---- *************** *** 28,32 **** .pieni { font-size: 8pt; } .iso { font-size: 15pt; } ! .kesk { font-size: 10pt; } .inputbox --- 26,30 ---- .pieni { font-size: 8pt; } .iso { font-size: 15pt; } ! .kesk { font-size: 13pt; } .inputbox *************** *** 34,35 **** --- 32,35 ---- font-size: 9pt; } .red { color: #FF0000; } + .uline { text-decoration: underline; } + .bold { font-weight: bold; } |
From: Ville K. <vk...@us...> - 2001-07-08 11:57:53
|
Update of /cvsroot/pview-php/Pview.php/templates/index In directory usw-pr-cvs1:/tmp/cvs-serv5698/templates/index Modified Files: header.inc Log Message: design changes, pco.php inputboxes -> option lists Index: header.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/index/header.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** header.inc 2001/06/06 20:53:55 1.2 --- header.inc 2001/07/08 11:57:48 1.3 *************** *** 6,18 **** <td colspan="9"> </td> </tr> ! <tr> ! <td>what</td> <td width="5"> </td> ! <td>where</td> <td width="5"> </td> ! <td>when</td> <td width="5"> </td> ! <td>how much</td> <td width="5"> </td> ! <td>desc</td> </tr> --- 6,18 ---- <td colspan="9"> </td> </tr> ! ! <td class="bold">what</td> <td width="5"> </td> ! <td class="bold">where</td> <td width="5"> </td> ! <td class="bold">when</td> <td width="5"> </td> ! <td class="bold">how much</td> <td width="5"> </td> ! <td class="bold">desc</td> </tr> |
From: Ville K. <vk...@us...> - 2001-07-08 11:57:53
|
Update of /cvsroot/pview-php/Pview.php/doc In directory usw-pr-cvs1:/tmp/cvs-serv5698/doc Modified Files: CHANGES Log Message: design changes, pco.php inputboxes -> option lists Index: CHANGES =================================================================== RCS file: /cvsroot/pview-php/Pview.php/doc/CHANGES,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** CHANGES 2001/07/06 10:48:50 1.6 --- CHANGES 2001/07/08 11:57:48 1.7 *************** *** 5,12 **** cvs --- ! 0.2 ! --- * personal configuration script for users, stores configuration in cookies, currently configures columns and rows of images in thumb view --- 5,14 ---- cvs --- + * pco.php inputboxes -> option lists + * design changes ! beta0-2 ! ------- * personal configuration script for users, stores configuration in cookies, currently configures columns and rows of images in thumb view |
From: Ville K. <vk...@us...> - 2001-07-08 11:57:53
|
Update of /cvsroot/pview-php/Pview.php/templates/pco In directory usw-pr-cvs1:/tmp/cvs-serv5698/templates/pco Modified Files: pco.inc Log Message: design changes, pco.php inputboxes -> option lists Index: pco.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/pco/pco.inc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** pco.inc 2001/07/06 13:12:17 1.5 --- pco.inc 2001/07/08 11:57:48 1.6 *************** *** 4,14 **** <tr> <td>Columns in thumbnail view</td> ! <td align="center"><input class="inputbox" type="text" name="form_columns" maxlength="1" size="1" value="<?= $Pviewphpcookie[columns] ?>"></td> ! <td><span class="pieni">1 - 9</span></td> </tr> <tr> <td>Rows in thumbnail view</td> ! <td align="center"><input class="inputbox" type="text" name="form_rows" maxlength="1" size="1" value="<?= $Pviewphpcookie[rows] ?>"></td> ! <td><span class="pieni">0 - 9, 0 = all</span></td> </tr> <tr> --- 4,26 ---- <tr> <td>Columns in thumbnail view</td> ! <td align="center"><select class="inputbox" name="form_columns"> ! <?php for ($num = 1; $num < 10; $num++) { ! echo ' <option'; ! if ($num == $Pviewphpcookie[columns]) ! echo ' selected'; ! echo ">$num</option>\n"; ! } ?> ! </select></td> </tr> <tr> <td>Rows in thumbnail view</td> ! <td align="center"><select class="inputbox" name="form_rows"> ! <?php for ($num = 0; $num < 10; $num++) { ! echo ' <option'; ! if ($num == $Pviewphpcookie[rows]) ! echo ' selected'; ! echo ">$num</option>\n"; ! } ?></td> ! <td><span class="pieni">0 = all</span></td> </tr> <tr> |
From: Ville K. <vk...@us...> - 2001-07-06 13:12:22
|
Update of /cvsroot/pview-php/Pview.php/templates/pco In directory usw-pr-cvs1:/tmp/cvs-serv17932/templates/pco Modified Files: pco.inc Log Message: html tweaking Index: pco.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/pco/pco.inc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** pco.inc 2001/07/06 10:48:50 1.4 --- pco.inc 2001/07/06 13:12:17 1.5 *************** *** 4,18 **** <tr> <td>Columns in thumbnail view</td> ! <td><input class="inputbox" type="text" name="form_columns" maxlength="1" size="1" value="<?= $Pviewphpcookie[columns] ?>"></td> <td><span class="pieni">1 - 9</span></td> </tr> <tr> <td>Rows in thumbnail view</td> ! <td><input class="inputbox" type="text" name="form_rows" maxlength="1" size="1" value="<?= $Pviewphpcookie[rows] ?>"></td> <td><span class="pieni">0 - 9, 0 = all</span></td> </tr> <tr> <td> </td> ! <td><input type="submit" value="Save"></td> <td><span class="pieni">Stores configuration info in a cookie.</span></td> </tr> --- 4,18 ---- <tr> <td>Columns in thumbnail view</td> ! <td align="center"><input class="inputbox" type="text" name="form_columns" maxlength="1" size="1" value="<?= $Pviewphpcookie[columns] ?>"></td> <td><span class="pieni">1 - 9</span></td> </tr> <tr> <td>Rows in thumbnail view</td> ! <td align="center"><input class="inputbox" type="text" name="form_rows" maxlength="1" size="1" value="<?= $Pviewphpcookie[rows] ?>"></td> <td><span class="pieni">0 - 9, 0 = all</span></td> </tr> <tr> <td> </td> ! <td align="center"><input type="submit" value="Save"></td> <td><span class="pieni">Stores configuration info in a cookie.</span></td> </tr> |
From: Ville K. <vk...@us...> - 2001-07-06 13:12:22
|
Update of /cvsroot/pview-php/Pview.php/templates/image In directory usw-pr-cvs1:/tmp/cvs-serv17932/templates/image Modified Files: image.inc Log Message: html tweaking Index: image.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/image/image.inc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** image.inc 2001/06/11 18:37:04 1.6 --- image.inc 2001/07/06 13:12:17 1.7 *************** *** 4,9 **** --- 4,11 ---- src="<?= empty($series[$pathi[s]][0][5]) ? $config['Pview']['path']['image'] : $series[$pathi[s]][0][5]; ?>/<?= $pathi[s] ?>/normal/<?= $series[$pathi[s]][$pathi[i]][0] ?>" alt="[IMAGE (<?= $series[$pathi[s]][$pathi[i]][1] ?>)]"></td> </tr> + <?php if (!empty($series[$pathi[s]][$pathi[i]][2])) { ?> <tr> <td align="center"><?= $series[$pathi[s]][$pathi[i]][2] ?><br> </td> </tr> + <?php } ?> </table> |
From: Ville K. <vk...@us...> - 2001-07-06 13:12:22
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv17932 Added Files: remcookie.php Log Message: html tweaking --- NEW FILE: remcookie.php --- <?php /* * $Id: remcookie.php,v 1.1 2001/07/06 13:12:16 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'); setcookie('Pviewphpcookie[columns]', '', time()-20000); setcookie('Pviewphpcookie[rows]', '', time()-20000); include($config['Pview']['path']['template'] . '/common-header.inc'); ?> <center>Cookies removed.<p></center> <?php include($config['Pview']['path']['template'] . '/common-footer.inc'); ?> |
From: Ville K. <vk...@us...> - 2001-07-06 10:51:44
|
Update of /cvsroot/pview-php/Pview.php/doc In directory usw-pr-cvs1:/tmp/cvs-serv1186/doc Modified Files: TODO Log Message: make 0.2 release Index: TODO =================================================================== RCS file: /cvsroot/pview-php/Pview.php/doc/TODO,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** TODO 2001/07/06 10:48:50 1.8 --- TODO 2001/07/06 10:51:41 1.9 *************** *** 3,7 **** ! * Clean up that messy code! * fix title generation * make pco.php shout out an error when entering incorrect values --- 3,7 ---- ! * clean up that messy code! * fix title generation * make pco.php shout out an error when entering incorrect values *************** *** 10,14 **** * 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 --- 10,15 ---- * 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 ! * make it look nicer :) |
From: Ville K. <vk...@us...> - 2001-07-06 10:50:18
|
Update of /cvsroot/pview-php/Pview.php/config In directory usw-pr-cvs1:/tmp/cvs-serv801/config Modified Files: config.php series.php Log Message: make 0.2. release Index: config.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/config/config.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** config.php 2001/07/06 08:14:11 1.8 --- config.php 2001/07/06 10:50:15 1.9 *************** *** 23,27 **** # Pview.php version number, no need to change unless you want to fool someone ! $config['Pview']['version'] = '0.1'; ?> --- 23,27 ---- # Pview.php version number, no need to change unless you want to fool someone ! $config['Pview']['version'] = '0.2'; ?> Index: series.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/config/series.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** series.php 2001/07/06 08:14:11 1.4 --- series.php 2001/07/06 10:50:15 1.5 *************** *** 10,75 **** $series = array( - "telttapile" => array( - array("Entropy Telttapile", "29.04.2001", "Otaniemi, Espoo", "", "© <a href=\"mailto:bl...@fi...\">Ville Koskinen</a> 2001 | You may not use any of these pictures without my permission.", "http://blue.fiiu.org/p/images"), - array("102-0260_IMG.jpg", ""), - array("102-0261_IMG.jpg", "whizzie"), - array("102-0262_IMG.jpg", ""), - array("102-0263_IMG.jpg", "Teemu, Maria, Johannes, x, x, whizzie, x"), - array("102-0265_IMG.jpg", "x, whizzie, azo"), - array("102-0266_IMG.jpg", "Santtu"), - array("102-0268_IMG.jpg", "One of whizzies records (offers under 1000FIM go to /dev/null)"), - array("102-0269_IMG.jpg", "Johannes, Teemu, Maria"), - array("102-0270_IMG.jpg", "Spice Girls whizzie"), - array("102-0271_IMG.jpg", "Vaavu, Santtu, x, x"), - array("102-0272_IMG.jpg", "x, x, x, Titu, Ville, azo, x"), - array("102-0274_IMG.jpg", "id.mono"), - array("102-0275_IMG.jpg", "Johannes, Teemu & Maria"), - array("102-0276_IMG.jpg", "Students"), - array("102-0277_IMG.jpg", "id.mono"), - array("102-0278_IMG.jpg", "\"What the hell is this?\""), - array("102-0279_IMG.jpg", "It's a tent!"), - array("102-0282_IMG.jpg", ""), - array("102-0285_IMG.jpg", "Johannes, Teemu & Maria"), - array("102-0286_IMG.jpg", "Teemu & Maria (cute :)"), - array("102-0288_IMG.jpg", "whizzie, id.mono, ekq"), - array("102-0290_IMG.jpg", "Johannes, Jussi"), - array("102-0292_IMG.jpg", "Titu"), - array("102-0294_IMG.jpg", "Saskia"), - array("102-0296_IMG.jpg", "We have heat"), - array("102-0298_IMG.jpg", "Titu, Static, x"), - array("102-0299_IMG.jpg", "id.mono, whizzie, ekq & Dura, Johannes, Jussi"), - array("103-0301_IMG.jpg", "Tomppa"), - array("103-0308_IMG.jpg", "Saskia, x"), - array("103-0309_IMG.jpg", "static, dixon, x, id.mono, xybo"), - array("103-0310_IMG.jpg", "Dura"), - array("103-0311_IMG.jpg", "Saskia, Tomppa, x"), - array("103-0317_IMG.jpg", "Saskia, x, x"), - array("103-0319_IMG.jpg", "astro"), - array("103-0322_IMG.jpg", "x, Juha, x & Saskia, OP, flower"), - array("103-0325_IMG.jpg", "x, x, whizzie, ekq & Maria, Teemu"), - array("103-0326_IMG.jpg", "Vaavu, Tomppa, astro"), - array("103-0329_IMG.jpg", "ekq, dixon, Ville, xybo & Teemu, id.mono forehead"), - array("103-0340_IMG.jpg", "EnergyUK: Pat Lynes & astro"), - array("103-0341_IMG.jpg", "EnergyUK djs records"), - array("103-0342_IMG.jpg", "Pat again"), - array("103-0343_IMG.jpg", "EnergyUK djs: Graeme Stoker, Pat Lynes & Wendy House, astro"), - array("103-0344_IMG.jpg", "And Pat again"), - array("103-0346_IMG.jpg", "Party ppl"), - array("103-0349_IMG.jpg", "Graeme on the decks, Wendy House, Vaavu"), - array("103-0350_IMG.jpg", "Graeme, Wendy House, Vaavu, Ville, Johannes"), - array("103-0351_IMG.jpg", "Graeme"), - array("103-0352_IMG.jpg", "Ville W, Teemu, student"), - array("103-0353_IMG.jpg", "Ville, Vaavu, Saskia, Johannes, x, x"), - array("103-0355_IMG.jpg", "Graeme, Wendy House"), - array("103-0356_IMG.jpg", "Some lame student asking for \"better\" music from Graeme"), - array("103-0357_IMG.jpg", "Graeme & Wendy House"), - array("103-0358_IMG.jpg", "Johannes, student x2, Vaavus back"), - array("103-0359_IMG.jpg", "Wendy House & saveli"), - array("103-0361_IMG.jpg", "Graeme"), - array("103-0362_IMG.jpg", "EnergyUK djs, Wendy House, saveli"), - array("103-0365_IMG.jpg", "EnergyUK djs again"), - array("103-0366_IMG.jpg", "Again EnergyUK djs :)"), - ), - "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.", ""), --- 10,13 ---- |
From: Ville K. <vk...@us...> - 2001-07-06 10:48:56
|
Update of /cvsroot/pview-php/Pview.php In directory usw-pr-cvs1:/tmp/cvs-serv32627 Modified Files: thumb.php Log Message: make 0.2 release Index: thumb.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/thumb.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** thumb.php 2001/06/14 08:50:00 1.3 --- thumb.php 2001/07/06 10:48:50 1.4 *************** *** 18,24 **** include_once 'lib/pv.php'; ! if (isset($Pviewphpcookie[columns])) $config['Pview']['layout']['columns'] = $Pviewphpcookie[columns]; ! if (isset($Pviewphpcookie[rows])) $config['Pview']['layout']['rows'] = $Pviewphpcookie[rows]; --- 18,24 ---- include_once 'lib/pv.php'; ! 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]; |
From: Ville K. <vk...@us...> - 2001-07-06 10:48:56
|
Update of /cvsroot/pview-php/Pview.php/templates/pco In directory usw-pr-cvs1:/tmp/cvs-serv32627/templates/pco Modified Files: pco.inc Log Message: make 0.2 release Index: pco.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/pco/pco.inc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** pco.inc 2001/07/06 08:14:11 1.3 --- pco.inc 2001/07/06 10:48:50 1.4 *************** *** 3,16 **** <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> </tr> <tr> ! <td align="right"><span class="pieni">(Stores configuration info in a cookie.)</span></td> <td><input type="submit" value="Save"></td> </tr> </table> --- 3,19 ---- <table cellpadding="2" cellspacing="2" border="0"> <tr> ! <td>Columns in thumbnail view</td> <td><input class="inputbox" type="text" name="form_columns" maxlength="1" size="1" value="<?= $Pviewphpcookie[columns] ?>"></td> + <td><span class="pieni">1 - 9</span></td> </tr> <tr> ! <td>Rows in thumbnail view</td> ! <td><input class="inputbox" type="text" name="form_rows" maxlength="1" size="1" value="<?= $Pviewphpcookie[rows] ?>"></td> ! <td><span class="pieni">0 - 9, 0 = all</span></td> </tr> <tr> ! <td> </td> <td><input type="submit" value="Save"></td> + <td><span class="pieni">Stores configuration info in a cookie.</span></td> </tr> </table> |
From: Ville K. <vk...@us...> - 2001-07-06 10:48:55
|
Update of /cvsroot/pview-php/Pview.php/doc In directory usw-pr-cvs1:/tmp/cvs-serv32627/doc Modified Files: CHANGES TODO Log Message: make 0.2 release Index: CHANGES =================================================================== RCS file: /cvsroot/pview-php/Pview.php/doc/CHANGES,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** CHANGES 2001/06/14 08:00:16 1.5 --- CHANGES 2001/07/06 10:48:50 1.6 *************** *** 5,8 **** --- 5,12 ---- cvs --- + + + 0.2 + --- * personal configuration script for users, stores configuration in cookies, currently configures columns and rows of images in thumb view *************** *** 14,17 **** --- 18,22 ---- short image description * small design changes + + other forgotten stuff (?) Index: TODO =================================================================== RCS file: /cvsroot/pview-php/Pview.php/doc/TODO,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** TODO 2001/06/14 08:50:00 1.7 --- TODO 2001/07/06 10:48:50 1.8 *************** *** 5,9 **** * 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, show thumbnails etc. --- 5,9 ---- * Clean up that messy code! * fix title generation ! * make pco.php shout out an error when entering incorrect values * config section for users, show all big pictures on one page, show thumbnails etc. |
From: Ville K. <vk...@us...> - 2001-07-06 08:14:15
|
Update of /cvsroot/pview-php/Pview.php/templates/pco In directory usw-pr-cvs1:/tmp/cvs-serv315/templates/pco Modified Files: pco.inc Log Message: Don't remember what's done here, *sigh*. Index: pco.inc =================================================================== RCS file: /cvsroot/pview-php/Pview.php/templates/pco/pco.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** pco.inc 2001/06/14 08:50:00 1.2 --- pco.inc 2001/07/06 08:14:11 1.3 *************** *** 11,15 **** </tr> <tr> ! <td> </td> <td><input type="submit" value="Save"></td> </tr> --- 11,15 ---- </tr> <tr> ! <td align="right"><span class="pieni">(Stores configuration info in a cookie.)</span></td> <td><input type="submit" value="Save"></td> </tr> |
From: Ville K. <vk...@us...> - 2001-07-06 08:14:15
|
Update of /cvsroot/pview-php/Pview.php/config In directory usw-pr-cvs1:/tmp/cvs-serv315/config Modified Files: config.php series.php Log Message: Don't remember what's done here, *sigh*. Index: config.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/config/config.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** config.php 2001/06/14 08:50:00 1.7 --- config.php 2001/07/06 08:14:11 1.8 *************** *** 16,26 **** $config['Pview']['title']['site'] = 'Pview.php site'; ! # 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'] = '3'; ! # Pview.php version number, no need to change $config['Pview']['version'] = '0.1'; --- 16,26 ---- $config['Pview']['title']['site'] = 'Pview.php site'; ! # default option: how many columns of images in thumbnail view $config['Pview']['layout']['columns'] = '3'; ! # default option: how many rows of images in thumbnail view $config['Pview']['layout']['rows'] = '3'; ! # Pview.php version number, no need to change unless you want to fool someone $config['Pview']['version'] = '0.1'; Index: series.php =================================================================== RCS file: /cvsroot/pview-php/Pview.php/config/series.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** series.php 2001/05/30 10:20:56 1.3 --- series.php 2001/07/06 08:14:11 1.4 *************** *** 10,13 **** --- 10,75 ---- $series = array( + "telttapile" => array( + array("Entropy Telttapile", "29.04.2001", "Otaniemi, Espoo", "", "© <a href=\"mailto:bl...@fi...\">Ville Koskinen</a> 2001 | You may not use any of these pictures without my permission.", "http://blue.fiiu.org/p/images"), + array("102-0260_IMG.jpg", ""), + array("102-0261_IMG.jpg", "whizzie"), + array("102-0262_IMG.jpg", ""), + array("102-0263_IMG.jpg", "Teemu, Maria, Johannes, x, x, whizzie, x"), + array("102-0265_IMG.jpg", "x, whizzie, azo"), + array("102-0266_IMG.jpg", "Santtu"), + array("102-0268_IMG.jpg", "One of whizzies records (offers under 1000FIM go to /dev/null)"), + array("102-0269_IMG.jpg", "Johannes, Teemu, Maria"), + array("102-0270_IMG.jpg", "Spice Girls whizzie"), + array("102-0271_IMG.jpg", "Vaavu, Santtu, x, x"), + array("102-0272_IMG.jpg", "x, x, x, Titu, Ville, azo, x"), + array("102-0274_IMG.jpg", "id.mono"), + array("102-0275_IMG.jpg", "Johannes, Teemu & Maria"), + array("102-0276_IMG.jpg", "Students"), + array("102-0277_IMG.jpg", "id.mono"), + array("102-0278_IMG.jpg", "\"What the hell is this?\""), + array("102-0279_IMG.jpg", "It's a tent!"), + array("102-0282_IMG.jpg", ""), + array("102-0285_IMG.jpg", "Johannes, Teemu & Maria"), + array("102-0286_IMG.jpg", "Teemu & Maria (cute :)"), + array("102-0288_IMG.jpg", "whizzie, id.mono, ekq"), + array("102-0290_IMG.jpg", "Johannes, Jussi"), + array("102-0292_IMG.jpg", "Titu"), + array("102-0294_IMG.jpg", "Saskia"), + array("102-0296_IMG.jpg", "We have heat"), + array("102-0298_IMG.jpg", "Titu, Static, x"), + array("102-0299_IMG.jpg", "id.mono, whizzie, ekq & Dura, Johannes, Jussi"), + array("103-0301_IMG.jpg", "Tomppa"), + array("103-0308_IMG.jpg", "Saskia, x"), + array("103-0309_IMG.jpg", "static, dixon, x, id.mono, xybo"), + array("103-0310_IMG.jpg", "Dura"), + array("103-0311_IMG.jpg", "Saskia, Tomppa, x"), + array("103-0317_IMG.jpg", "Saskia, x, x"), + array("103-0319_IMG.jpg", "astro"), + array("103-0322_IMG.jpg", "x, Juha, x & Saskia, OP, flower"), + array("103-0325_IMG.jpg", "x, x, whizzie, ekq & Maria, Teemu"), + array("103-0326_IMG.jpg", "Vaavu, Tomppa, astro"), + array("103-0329_IMG.jpg", "ekq, dixon, Ville, xybo & Teemu, id.mono forehead"), + array("103-0340_IMG.jpg", "EnergyUK: Pat Lynes & astro"), + array("103-0341_IMG.jpg", "EnergyUK djs records"), + array("103-0342_IMG.jpg", "Pat again"), + array("103-0343_IMG.jpg", "EnergyUK djs: Graeme Stoker, Pat Lynes & Wendy House, astro"), + array("103-0344_IMG.jpg", "And Pat again"), + array("103-0346_IMG.jpg", "Party ppl"), + array("103-0349_IMG.jpg", "Graeme on the decks, Wendy House, Vaavu"), + array("103-0350_IMG.jpg", "Graeme, Wendy House, Vaavu, Ville, Johannes"), + array("103-0351_IMG.jpg", "Graeme"), + array("103-0352_IMG.jpg", "Ville W, Teemu, student"), + array("103-0353_IMG.jpg", "Ville, Vaavu, Saskia, Johannes, x, x"), + array("103-0355_IMG.jpg", "Graeme, Wendy House"), + array("103-0356_IMG.jpg", "Some lame student asking for \"better\" music from Graeme"), + array("103-0357_IMG.jpg", "Graeme & Wendy House"), + array("103-0358_IMG.jpg", "Johannes, student x2, Vaavus back"), + array("103-0359_IMG.jpg", "Wendy House & saveli"), + array("103-0361_IMG.jpg", "Graeme"), + array("103-0362_IMG.jpg", "EnergyUK djs, Wendy House, saveli"), + array("103-0365_IMG.jpg", "EnergyUK djs again"), + array("103-0366_IMG.jpg", "Again EnergyUK djs :)"), + ), + "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.", ""), |