Changeset 347
- Timestamp:
- 01/13/07 00:03:39 (2 years ago)
- Files:
-
- trunk/build/buildjelix.php (modified) (2 diffs)
- trunk/build/CREDITS (modified) (1 diff)
- trunk/build/lib/jBuild.inc.php (modified) (3 diffs)
- trunk/lib/jelix/CREDITS (modified) (3 diffs)
- trunk/lib/jelix/INSTALL (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build/buildjelix.php
r345 r347 14 14 '_dist', // valeur par d�ut (boolean = option booleene) 15 15 '', // regexp pour la valeur ou vide=tout (seulement pour option non booleene) 16 ), 16 ), 17 17 'PHP_VERSION_TARGET'=> array( 18 18 "PHP5 version for which jelix will be generated (by default, for all PHP5 version)", … … 165 165 166 166 // creation du fichier d'infos sur le build 167 $infos = 'BUILD_DATE= "'.date('Y-m-d H:i')."\"\n".ENV::getIniContent(array('SVN_REVISION')); 167 $view = array('PHP_VERSION_TARGET', 'LIB_VERSION', 'SVN_REVISION', 'ENABLE_PHP_FILTER', 168 'ENABLE_PHP_JSON', 'ENABLE_PHP_XMLRPC', 'WITH_BYTECODE_CACHE', 'ENABLE_DEVELOPER', 169 'ENABLE_OPTIMIZE', 'STRIP_COMMENT', 'ENABLE_OLD_CLASS_NAMING' ); 170 171 $infos = 'BUILD_DATE= "'.date('Y-m-d H:i')."\"\n".ENV::getIniContent($view); 168 172 169 173 file_put_contents($BUILD_TARGET_PATH.'lib/jelix/BUILD', $infos); trunk/build/CREDITS
r154 r347 1 Cr �ts2 ======= 1 Credits for jBuildTools 2 ======================= 3 3 4 d�loppeur : Laurent Jouanneau 4 Main developer : Laurent Jouanneau 5 6 See http://jelix.org trunk/build/lib/jBuild.inc.php
r345 r347 84 84 self::storeValue($name,file_get_contents($file)); 85 85 } 86 86 87 87 } 88 88 … … 131 131 } 132 132 $help.=$name."\n"; 133 if($def[0] != '') 133 if($def[0] != '') 134 134 $help.="\t".$def[0]."\n"; 135 135 // type … … 144 144 } 145 145 146 static public function getIniContent($ showHiddenOption = false){146 static public function getIniContent($list = null){ 147 147 $ini=''; 148 148 foreach(self::$variables_def as $name=>$def){ 149 if($def[0] === false && $ showHiddenOption === false){149 if($def[0] === false && $list === null){ 150 150 continue; 151 151 } 152 if($ def[0] === false && is_array($showHiddenOption)){153 if(!in_array($name,$ showHiddenOption))152 if($list !== null && is_array($list)){ 153 if(!in_array($name,$list)) 154 154 continue; 155 155 } trunk/lib/jelix/CREDITS
r338 r347 5 5 ------------ 6 6 7 Laurent Jouanneau (laurentj) : 8 Concepteur et d�loppeur principal d u code original �elix7 Laurent Jouanneau (laurentj) : 8 Concepteur et d�loppeur principal de Jelix 9 9 10 10 Loic Mathaud (bballizlife) : … … 38 38 Petite am�oration sur jResponseHtml (description et keywords) 39 39 40 Cedric 40 Cedric 41 41 patch correctif sur jFile::read 42 42 … … 51 51 ------------------------------- 52 52 53 Brent R. Matzelle 53 Brent R. Matzelle 54 54 pour sa classe PHPMailer (jMailer dans Jelix) 55 Chris Ryan 55 Chris Ryan 56 56 pour sa classe SMTP (jSmtp dans Jelix) 57 57 Copix Team 58 en particulier Gerald Croes, co-auteur des parties du code qui issues du projet 59 Copix version 2.3dev20050901 et qui sont sous copyright 2001-2005 Copix Team 58 en particulier Gerald Croes, co-auteur des parties du code qui issues du projet 59 Copix version 2.3dev20050901 et qui sont sous copyright 2001-2005 Copix Team 60 60 (http://www.copix.org) 61 61 62 62 63 (mise �our �vn-3 37)63 (mise �our �vn-346) trunk/lib/jelix/INSTALL
r157 r347 1 Installation de jelix 2 ================== ===1 Jelix Installation 2 ================== 3 3 4 Voir http://jelix.org/articles/manuel/installation 4 Server configuration 5 --------------------- 6 7 Jelix worked only on PHP 5.0 and upper. 8 9 This php extensions should be installed : dom, simplexml, pcre, session, spl, tokenizer. 10 11 Jelix supports mysql 4.0+ and postgresql 8.0+. 12 13 php.ini : magic_quotes_gpc, magic_quotes_runtime, 14 and session_auto_start should be off. It is recommanded to set register_globals, asp_tags and short_open_tag to off. Jelix has not been tested with safe_mode. 15 16 installation 17 ------------ 18 19 - unzip the archive 20 - set write access on temp directory, for apache 21 - install or create an application with lib/jelix-scripts/jelix 22 23 24 25 Details 26 ------- 27 28 see http://jelix.org/articles/manuel/installation 29 or http://jelix.org/articles/en/manuel/installation
