Changeset 347

Show
Ignore:
Timestamp:
01/13/07 00:03:39 (2 years ago)
Author:
laurentj
Message:

correction bug dans jbuild et mise à jour des fichiers CREDITS, INSTALL...

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/build/buildjelix.php

    r345 r347  
    1414    '_dist',                                        // valeur par d�ut (boolean = option booleene) 
    1515    '',                                             // regexp pour la valeur ou vide=tout (seulement pour option non booleene) 
    16     ),  
     16    ), 
    1717'PHP_VERSION_TARGET'=> array( 
    1818    "PHP5 version for which jelix will be generated (by default, for all PHP5 version)", 
     
    165165 
    166166// 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); 
    168172 
    169173file_put_contents($BUILD_TARGET_PATH.'lib/jelix/BUILD', $infos); 
  • trunk/build/CREDITS

    r154 r347  
    1 Cr�t
    2 ======= 
     1Credits for jBuildTool
     2======================= 
    33 
    4 d�loppeur : Laurent Jouanneau 
     4Main developer : Laurent Jouanneau 
     5 
     6See http://jelix.org 
  • trunk/build/lib/jBuild.inc.php

    r345 r347  
    8484            self::storeValue($name,file_get_contents($file)); 
    8585        } 
    86          
     86 
    8787    } 
    8888 
     
    131131            } 
    132132            $help.=$name."\n"; 
    133             if($def[0] != '')  
     133            if($def[0] != '') 
    134134                $help.="\t".$def[0]."\n"; 
    135135            // type 
     
    144144    } 
    145145 
    146     static public function getIniContent($showHiddenOption = false){ 
     146    static public function getIniContent($list = null){ 
    147147        $ini=''; 
    148148        foreach(self::$variables_def as $name=>$def){ 
    149             if($def[0] === false && $showHiddenOption === false){ 
     149            if($def[0] === false && $list === null){ 
    150150                continue; 
    151151            } 
    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)) 
    154154                    continue; 
    155155            } 
  • trunk/lib/jelix/CREDITS

    r338 r347  
    55------------ 
    66 
    7 Laurent Jouanneau (laurentj) :  
    8     Concepteur et d�loppeur principal du code original �elix 
     7Laurent Jouanneau (laurentj) : 
     8    Concepteur et d�loppeur principal de Jelix 
    99 
    1010Loic Mathaud (bballizlife) : 
     
    3838    Petite am�oration sur jResponseHtml (description et keywords) 
    3939 
    40 Cedric  
     40Cedric 
    4141    patch correctif sur jFile::read 
    4242 
     
    5151------------------------------- 
    5252 
    53 Brent R. Matzelle  
     53Brent R. Matzelle 
    5454    pour sa classe PHPMailer (jMailer dans Jelix) 
    55 Chris Ryan   
     55Chris Ryan 
    5656    pour sa classe SMTP (jSmtp dans Jelix) 
    5757Copix 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 
    6060    (http://www.copix.org) 
    6161 
    6262 
    63 (mise �our �vn-337
     63(mise �our �vn-346
  • trunk/lib/jelix/INSTALL

    r157 r347  
    1 Installation de jelix 
    2 ===================== 
     1Jelix Installation 
     2================== 
    33 
    4 Voir http://jelix.org/articles/manuel/installation 
     4Server configuration 
     5--------------------- 
     6 
     7Jelix worked only on PHP 5.0 and upper. 
     8 
     9This php extensions should be installed : dom, simplexml, pcre, session, spl, tokenizer. 
     10 
     11Jelix supports mysql 4.0+ and postgresql 8.0+. 
     12 
     13php.ini : magic_quotes_gpc, magic_quotes_runtime, 
     14and 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 
     16installation 
     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 
     25Details 
     26------- 
     27 
     28see http://jelix.org/articles/manuel/installation 
     29or http://jelix.org/articles/en/manuel/installation 
Download in other formats: Unified Diff Zip Archive