[Openfirst-cvscommit] manual/openfirst.photogallery photogallery.php,1.1,1.2
Brought to you by:
xtimg
From: <xt...@us...> - 2003-10-12 22:42:02
|
Update of /cvsroot/openfirst/manual/openfirst.photogallery In directory sc8-pr-cvs1:/tmp/cvs-serv12646/openfirst.photogallery Modified Files: photogallery.php Log Message: Make basic changes found by proof reading, including rewording, spelling, grammar, and minor technical inaccuracies. Index: photogallery.php =================================================================== RCS file: /cvsroot/openfirst/manual/openfirst.photogallery/photogallery.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** photogallery.php 29 Sep 2003 21:40:25 -0000 1.1 --- photogallery.php 12 Oct 2003 22:40:50 -0000 1.2 *************** *** 43,50 **** <td>The openFIRST.photogallery is a very powerful photo gallery system designed specifically for the openFIRST system. The gallery comes with every feature ! you could possibly need. Features included are: thumbnail maker (switching ! GD functions depending on which GD gallery you have installed, automatically ! sets itself), gallery manager back-end, user comments, an advanced image ! naming and descriptions and a send-to-a-friend feature.</td> </tr> <tr> --- 43,48 ---- <td>The openFIRST.photogallery is a very powerful photo gallery system designed specifically for the openFIRST system. The gallery comes with every feature ! you could possibly need. Features included are: thumbnail maker (utilising the GD functions), gallery manager back-end, user comments, advanced image ! naming, image descriptions and a send-to-a-friend feature.</td> </tr> <tr> *************** *** 68,72 **** <td>photogallery.php - provides functions for viewing specific gallery images. This was developed to allow quick and easy image reference without the webmaster ! having to type in the direct path to the image. Simple use the functions within this script.</td> </tr> --- 66,70 ---- <td>photogallery.php - provides functions for viewing specific gallery images. This was developed to allow quick and easy image reference without the webmaster ! having to type in the direct path to the image. Simply use the functions within this script.</td> </tr> *************** *** 79,86 **** After you upload images you will have an option to make thumbnails for them. You can make specific thumbnails or you can may them en mass. Thumbnails ! do NOT override the original image. Whenever a gallery is created a folder ! is created under the gallery folder. All images are uploaded to the respective ! gallery folder. If you choose to make a thumbnail GD will shrink the image ! and place it in /thumbs in the particular gallery folder.</p> <p>The thumbs image has the same exact name as the original image. When you view the gallery images if a thumbnail is present the system will --- 77,84 ---- After you upload images you will have an option to make thumbnails for them. You can make specific thumbnails or you can may them en mass. Thumbnails ! do NOT override the original image. Whenever a gallery is created a directory ! is created under the gallery/ directory. All images are uploaded to the respective ! gallery directory. If you choose to make a thumbnail GD will shrink the image ! and place it in the thumbs/ directory of the particular gallery.</p> <p>The thumbs image has the same exact name as the original image. When you view the gallery images if a thumbnail is present the system will *************** *** 92,96 **** of text files. We have implemented this feature to make the lives of webmasters easier. If you wish to use text file extraction you must name the text ! file the exact same thing as the image.</p> <p>Once images are completely uploaded and setup in the system visitors will be able to send them to friends and/or comment on them as they please.</p> --- 90,94 ---- of text files. We have implemented this feature to make the lives of webmasters easier. If you wish to use text file extraction you must name the text ! file the exact same thing as the image except with a .txt extension instead of the image's extension.</p> <p>Once images are completely uploaded and setup in the system visitors will be able to send them to friends and/or comment on them as they please.</p> *************** *** 111,116 **** <tr> <td><p>function galleryimage([gallery id],[image name],[thumnail/large image ! option],[height][width]) - this function can be used to preview images ! from the gallery simply by using this function.</p> </td> </tr> --- 109,114 ---- <tr> <td><p>function galleryimage([gallery id],[image name],[thumnail/large image ! option],[height][width]) - this function can be used to view images ! from the gallery.</p> </td> </tr> *************** *** 121,125 **** <td>index.php - view the current galleries installed<br> gallery.php - view the current photos listed in the gallery<br> ! email.php - allows users to e-mail photo's to friends<br> viewphoto.php - view individual photos<br> photogallery.php - the system include file that is carried through the website --- 119,123 ---- <td>index.php - view the current galleries installed<br> gallery.php - view the current photos listed in the gallery<br> ! email.php - allows users to e-mail photos to friends<br> viewphoto.php - view individual photos<br> photogallery.php - the system include file that is carried through the website *************** *** 131,139 **** to the photogallery module<br> admin/index.php - an admin index page<br> ! admin/makethumb.php - creates thumbnails, calls preview.php to create thumbs with GD<br> ! admin/newgallery.php - allows users to create new galleries<br> admin/preview.php - the thumbnail maker which contains the GD function switcher ! and functions</td> </tr> <tr> --- 129,137 ---- to the photogallery module<br> admin/index.php - an admin index page<br> ! admin/makethumb.php - creates thumbnails, calls preview.php to create thumbnails with GD<br> ! admin/newgallery.php - allows administrators to create new galleries<br> admin/preview.php - the thumbnail maker which contains the GD function switcher ! and image previewing functions</td> </tr> <tr> *************** *** 146,148 **** </table> <p><strong></strong></p> ! <?php include("$footer"); ?> \ No newline at end of file --- 144,146 ---- </table> <p><strong></strong></p> ! <?php include("$footer"); ?> |