diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-02-17 13:59:35 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-02-17 13:59:35 -0200 |
commit | cf74192c7ce4d5ed5c265378dc8da704b7dacb19 (patch) | |
tree | d824b84c82a8534157a8dd4725bcc14e9fdcda52 /www/inc/config.inc.php | |
parent | 956ec6a9bfa9a3af22c795f4c710cb9348ba82ab (diff) | |
download | original-cf74192c7ce4d5ed5c265378dc8da704b7dacb19.tar.gz original-cf74192c7ce4d5ed5c265378dc8da704b7dacb19.tar.bz2 |
Using config.inc.php.dist
By using config.inc.php.dist instead of config.inc.php
it's possible to split custom configuration from the
source code.
Diffstat (limited to 'www/inc/config.inc.php')
-rw-r--r-- | www/inc/config.inc.php | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/www/inc/config.inc.php b/www/inc/config.inc.php deleted file mode 100644 index 14e8ad8..0000000 --- a/www/inc/config.inc.php +++ /dev/null @@ -1,84 +0,0 @@ -<?php -#base dirname - $root = dirname(dirname(__FILE__) . "../"); -# =========================================================================== -# dir index - $sortinmonth = 0;// 1 - alphabetically - // 0 - by date (reverse) - -# =========================================================================== -# default languages -# use UA's accept language -require_once("$root/inc/l10nget.inc.php"); //get from UA -if (isset($_SERVER["HTTP_ACCEPT_LANGUAGE"])) { - $sclang = get_lang_from_agent($_SERVER["HTTP_ACCEPT_LANGUAGE"]); -} else { - $sclang = "en"; -} -l10n::set("$root/l10n/".$GLOBALS['sclang']."/exif.lang"); - -# =========================================================================== -#Name to dsplay on the gallery -$scnamegallery = "Photo Gallery Index"; - - -# =========================================================================== -# albums to show - $yearsince = 1999; -#images FIXME - this is stylesheet's job - $img["left"] = "left.png"; - $img["right"] = "right.png"; - $img["top"] = "top.png"; -# =========================================================================== -#thumbnail behaviour - //keep this unset for dynamic thumbnail size - //$thumbsize = "fixed"; - //How the previous and Next thumbnails should be scaled - // 1 is 1:1, >1 is smaller, <1 is bigger - $PNthumbScale = 1.5; -# Photos Copyright -# CHANGE THIS! I am not trying to take over the world ;) - $copy = "Copyright © 1999-2005 Jakub Steiner"; -#app info - $app["name"] = "Original"; // opensource remote image gallery, - // initialy not as lovely - $app["url"] = "http://jimmac.musichall.cz/original.php3"; - $app["version"] = "0.12pre"; - $exif_show = array("DateTime"=>__("Time Taken"), - "Make"=>__("Camera Manufacturer"), - "Model"=>__("Camera Model"), - "FocalLength"=>__("Real Focal Length"), - "FocalLengthIn35mmFilm"=>__("Focal Length Relative to 35mm Film"), - "FNumber"=>__("F Stop"), - "ExposureTime"=>__("Time of Exposure"), - "ISOSpeedRatings"=>__("Film/Chip Sensitivity"), - "Flash"=>__("Flash")); -# =========================================================================== -## Gallery Directory -# This is a path relative to the directory where original is installed -# eg. it can be "../galleries" to use a galleries dir above the original dir. - $gallery_dir="galleries"; - -#Enable this to access extended tracking functionality -#depends on sqlite -$have_sqlite = 0; - -# This controls wheather web visitors will be able to post -# comments to images -$comments = 1; - -# Access Log/Counter -# $log_access = 0; // no access logging -$log_access = 1; - -#css styles - $themes = array( - "dark" => "inc/styles/dark/dark.css", - "classic" => "inc/styles/classic/classic.css", - "gorilla" => "inc/styles/gorilla/gorilla.css" - ); - - - - -?> |