Changeset 819

Show
Ignore:
Timestamp:
03/19/08 01:23:33 (10 months ago)
Author:
bastnic
Message:

ticket #480 : add default template when creating new app

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.0.x/build/manifests/jelix-lib.mn

    r806 r819  
    215215  crud_edit.tpl 
    216216  crud_view.tpl 
     217cd lib/jelix/core-modules/jelix/templates/en_EN 
     218  check_install.tpl 
     219cd lib/jelix/core-modules/jelix/templates/en_US 
     220  check_install.tpl 
     221cd lib/jelix/core-modules/jelix/templates/fr_FR 
     222  check_install.tpl 
     223cd lib/jelix/core-modules/jelix/zones 
     224  check_install.zone.php 
    217225 
    218226cd lib/jelix/dao 
  • branches/1.0.x/build/manifests/jelix-lib.mn

    r806 r819  
    215215  crud_edit.tpl 
    216216  crud_view.tpl 
     217cd lib/jelix/core-modules/jelix/templates/en_EN 
     218  check_install.tpl 
     219cd lib/jelix/core-modules/jelix/templates/en_US 
     220  check_install.tpl 
     221cd lib/jelix/core-modules/jelix/templates/fr_FR 
     222  check_install.tpl 
     223cd lib/jelix/core-modules/jelix/zones 
     224  check_install.zone.php 
    217225 
    218226cd lib/jelix/dao 
  • branches/1.0.x/build/manifests/jelix-lib.mn

    r806 r819  
    215215  crud_edit.tpl 
    216216  crud_view.tpl 
     217cd lib/jelix/core-modules/jelix/templates/en_EN 
     218  check_install.tpl 
     219cd lib/jelix/core-modules/jelix/templates/en_US 
     220  check_install.tpl 
     221cd lib/jelix/core-modules/jelix/templates/fr_FR 
     222  check_install.tpl 
     223cd lib/jelix/core-modules/jelix/zones 
     224  check_install.zone.php 
    217225 
    218226cd lib/jelix/dao 
  • branches/1.0.x/lib/jelix-scripts/templates/controller.tpl

    r809 r819  
    1515    function %%method%%() { 
    1616        $rep = $this->getResponse('html'); 
    17          
     17 
     18                // this is a call for the 'welcome' zone after creating a new application 
     19                // remove this line 
     20        $rep->body->assignZone('MAIN', 'jelix~check_install');  
     21 
    1822        return $rep; 
    1923    } 
  • branches/1.0.x/lib/jelix-scripts/templates/controller.tpl

    r809 r819  
    1515    function %%method%%() { 
    1616        $rep = $this->getResponse('html'); 
    17          
     17 
     18                // this is a call for the 'welcome' zone after creating a new application 
     19                // remove this line 
     20        $rep->body->assignZone('MAIN', 'jelix~check_install');  
     21 
    1822        return $rep; 
    1923    } 
  • branches/1.0.x/lib/jelix-scripts/templates/controller.tpl

    r809 r819  
    1515    function %%method%%() { 
    1616        $rep = $this->getResponse('html'); 
    17          
     17 
     18                // this is a call for the 'welcome' zone after creating a new application 
     19                // remove this line 
     20        $rep->body->assignZone('MAIN', 'jelix~check_install');  
     21 
    1822        return $rep; 
    1923    } 
  • branches/1.0.x/lib/jelix-scripts/templates/var/config/defaultconfig.ini.php.tpl

    r810 r819  
    5454; name of url engine :  "simple" or "significant" 
    5555engine        = simple 
     56 
     57; this is the url path to the jelix-www content (you can found this content in lib/jelix-www/) 
     58; because the jelix-www directory is outside the yourapp/www/ directory, you should create a link to 
     59; jelix-www, or copy its content in yourapp/www/ (with a name like 'jelix' for example) 
     60; so you should indicate the relative path of this link/directory to the basePath, or an absolute path. 
     61jelixWWWPath = "jelix/" 
     62 
    5663 
    5764; enable the parsing of the url. Set it to off if the url is already parsed by another program 
  • branches/1.0.x/lib/jelix-scripts/templates/var/config/defaultconfig.ini.php.tpl

    r810 r819  
    5454; name of url engine :  "simple" or "significant" 
    5555engine        = simple 
     56 
     57; this is the url path to the jelix-www content (you can found this content in lib/jelix-www/) 
     58; because the jelix-www directory is outside the yourapp/www/ directory, you should create a link to 
     59; jelix-www, or copy its content in yourapp/www/ (with a name like 'jelix' for example) 
     60; so you should indicate the relative path of this link/directory to the basePath, or an absolute path. 
     61jelixWWWPath = "jelix/" 
     62 
    5663 
    5764; enable the parsing of the url. Set it to off if the url is already parsed by another program 
  • branches/1.0.x/lib/jelix-scripts/templates/var/config/defaultconfig.ini.php.tpl

    r810 r819  
    5454; name of url engine :  "simple" or "significant" 
    5555engine        = simple 
     56 
     57; this is the url path to the jelix-www content (you can found this content in lib/jelix-www/) 
     58; because the jelix-www directory is outside the yourapp/www/ directory, you should create a link to 
     59; jelix-www, or copy its content in yourapp/www/ (with a name like 'jelix' for example) 
     60; so you should indicate the relative path of this link/directory to the basePath, or an absolute path. 
     61jelixWWWPath = "jelix/" 
     62 
    5663 
    5764; enable the parsing of the url. Set it to off if the url is already parsed by another program 
  • branches/1.0.x/lib/jelix-www/design/jelix.css

    r144 r819  
    1 body { 
    2     font-family: Arial, Helvetica, sans-serif; 
    3     font-size: 0.7em; 
     1/* 
     2 * Design and CSS file by Laurent Jouanneau for jelix.org 
     3 * Copyright (c) 2006-2007 by Laurent Jouanneau - adapted by Bastien Jaillot 
     4 * 
     5 * You cannot use this stylesheet on your own site without the permission of the author 
     6 * All right reserved 
     7 */ 
     8 
     9body {   
     10    font-family: Verdana, Arial, Sans;  
     11    font-size:0.8em; 
     12    margin:0; 
     13    background-color:#eff4f6; 
     14    padding-left:1em; 
     15    padding-right:1em; 
    416} 
     17 
     18.logo { 
     19    background: transparent url('images/logo_jelix_moyen.png') top left; 
     20    height: 60px; 
     21    width: 180px; 
     22    position: absolute; 
     23    top: 10px; 
     24    left: 10px; 
     25} 
     26 
     27a { color:#3f6f7a; text-decoration:underline; } 
     28a:visited {  color : #002830;} 
     29a:hover { color: #0f82af; background-color: #d7e7eb; } 
     30 
     31 
     32h1.apptitle { 
     33    margin: 32px 0 60px 200px; 
     34    font-size: 1.7em; 
     35    color: #002830; 
     36} 
     37 
     38/* 
     39 * checker 
     40 *********/ 
     41ul.checkresults { 
     42    border:3px solid black; 
     43    margin: 2em; 
     44    padding:1em; 
     45    list-style-type:none; 
     46} 
     47ul.checkresults li { margin:0; padding:5px; border-top:1px solid black; } 
     48li.checkerror   { background-color:#ff6666;} 
     49li.checkok      { background-color:#a4ffa9;} 
     50li.checkwarning { background-color:#ffbc8f;} 
     51 
     52.nocss { 
     53    display: none; 
     54} 
  • branches/1.0.x/lib/jelix-www/design/jelix.css

    r144 r819  
    1 body { 
    2     font-family: Arial, Helvetica, sans-serif; 
    3     font-size: 0.7em; 
     1/* 
     2 * Design and CSS file by Laurent Jouanneau for jelix.org 
     3 * Copyright (c) 2006-2007 by Laurent Jouanneau - adapted by Bastien Jaillot 
     4 * 
     5 * You cannot use this stylesheet on your own site without the permission of the author 
     6 * All right reserved 
     7 */ 
     8 
     9body {   
     10    font-family: Verdana, Arial, Sans;  
     11    font-size:0.8em; 
     12    margin:0; 
     13    background-color:#eff4f6; 
     14    padding-left:1em; 
     15    padding-right:1em; 
    416} 
     17 
     18.logo { 
     19    background: transparent url('images/logo_jelix_moyen.png') top left; 
     20    height: 60px; 
     21    width: 180px; 
     22    position: absolute; 
     23    top: 10px; 
     24    left: 10px; 
     25} 
     26 
     27a { color:#3f6f7a; text-decoration:underline; } 
     28a:visited {  color : #002830;} 
     29a:hover { color: #0f82af; background-color: #d7e7eb; } 
     30 
     31 
     32h1.apptitle { 
     33    margin: 32px 0 60px 200px; 
     34    font-size: 1.7em; 
     35    color: #002830; 
     36} 
     37 
     38/* 
     39 * checker 
     40 *********/ 
     41ul.checkresults { 
     42    border:3px solid black; 
     43    margin: 2em; 
     44    padding:1em; 
     45    list-style-type:none; 
     46} 
     47ul.checkresults li { margin:0; padding:5px; border-top:1px solid black; } 
     48li.checkerror   { background-color:#ff6666;} 
     49li.checkok      { background-color:#a4ffa9;} 
     50li.checkwarning { background-color:#ffbc8f;} 
     51 
     52.nocss { 
     53    display: none; 
     54} 
  • branches/1.0.x/lib/jelix-www/design/jelix.css

    r144 r819  
    1 body { 
    2     font-family: Arial, Helvetica, sans-serif; 
    3     font-size: 0.7em; 
     1/* 
     2 * Design and CSS file by Laurent Jouanneau for jelix.org 
     3 * Copyright (c) 2006-2007 by Laurent Jouanneau - adapted by Bastien Jaillot 
     4 * 
     5 * You cannot use this stylesheet on your own site without the permission of the author 
     6 * All right reserved 
     7 */ 
     8 
     9body {   
     10    font-family: Verdana, Arial, Sans;  
     11    font-size:0.8em; 
     12    margin:0; 
     13    background-color:#eff4f6; 
     14    padding-left:1em; 
     15    padding-right:1em; 
    416} 
     17 
     18.logo { 
     19    background: transparent url('images/logo_jelix_moyen.png') top left; 
     20    height: 60px; 
     21    width: 180px; 
     22    position: absolute; 
     23    top: 10px; 
     24    left: 10px; 
     25} 
     26 
     27a { color:#3f6f7a; text-decoration:underline; } 
     28a:visited {  color : #002830;} 
     29a:hover { color: #0f82af; background-color: #d7e7eb; } 
     30 
     31 
     32h1.apptitle { 
     33    margin: 32px 0 60px 200px; 
     34    font-size: 1.7em; 
     35    color: #002830; 
     36} 
     37 
     38/* 
     39 * checker 
     40 *********/ 
     41ul.checkresults { 
     42    border:3px solid black; 
     43    margin: 2em; 
     44    padding:1em; 
     45    list-style-type:none; 
     46} 
     47ul.checkresults li { margin:0; padding:5px; border-top:1px solid black; } 
     48li.checkerror   { background-color:#ff6666;} 
     49li.checkok      { background-color:#a4ffa9;} 
     50li.checkwarning { background-color:#ffbc8f;} 
     51 
     52.nocss { 
     53    display: none; 
     54} 
  • branches/1.0.x/lib/jelix/checker.php

    r699 r819  
    6363            echo '<p>',$checker->messages->get('conclusion.ok'),'</p>'; 
    6464        } 
     65        echo "</div>"; 
    6566    } 
    6667} 
  • branches/1.0.x/lib/jelix/checker.php

    r699 r819  
    6363            echo '<p>',$checker->messages->get('conclusion.ok'),'</p>'; 
    6464        } 
     65        echo "</div>"; 
    6566    } 
    6667} 
  • branches/1.0.x/lib/jelix/checker.php

    r699 r819  
    6363            echo '<p>',$checker->messages->get('conclusion.ok'),'</p>'; 
    6464        } 
     65        echo "</div>"; 
    6566    } 
    6667} 
  • branches/1.0.x/lib/jelix/CREDITS

    r817 r819  
    7373 - little improvement in the jControllerDaoCrud API (#330, #487) 
    7474 - fixed minor bugs 
    75  - default template and response generated by createapp (#496
     75 - default template and response generated by createapp (#496, #480
    7676 
    7777Nicolas Jeudy (aka njeudy) 
  • branches/1.0.x/lib/jelix/CREDITS

    r817 r819  
    7373 - little improvement in the jControllerDaoCrud API (#330, #487) 
    7474 - fixed minor bugs 
    75  - default template and response generated by createapp (#496
     75 - default template and response generated by createapp (#496, #480
    7676 
    7777Nicolas Jeudy (aka njeudy) 
  • branches/1.0.x/lib/jelix/CREDITS

    r817 r819  
    7373 - little improvement in the jControllerDaoCrud API (#330, #487) 
    7474 - fixed minor bugs 
    75  - default template and response generated by createapp (#496
     75 - default template and response generated by createapp (#496, #480
    7676 
    7777Nicolas Jeudy (aka njeudy) 
  • trunk/build/manifests/jelix-lib.mn

    r814 r819  
    215215  crud_edit.tpl 
    216216  crud_view.tpl 
     217cd lib/jelix/core-modules/jelix/templates/en_EN 
     218  check_install.tpl 
     219cd lib/jelix/core-modules/jelix/templates/en_US 
     220  check_install.tpl 
     221cd lib/jelix/core-modules/jelix/templates/fr_FR 
     222  check_install.tpl 
     223cd lib/jelix/core-modules/jelix/zones 
     224  check_install.zone.php 
    217225 
    218226cd lib/jelix/dao 
  • trunk/build/manifests/jelix-lib.mn

    r814 r819  
    215215  crud_edit.tpl 
    216216  crud_view.tpl 
     217cd lib/jelix/core-modules/jelix/templates/en_EN 
     218  check_install.tpl 
     219cd lib/jelix/core-modules/jelix/templates/en_US 
     220  check_install.tpl 
     221cd lib/jelix/core-modules/jelix/templates/fr_FR 
     222  check_install.tpl 
     223cd lib/jelix/core-modules/jelix/zones 
     224  check_install.zone.php 
    217225 
    218226cd lib/jelix/dao 
  • trunk/build/manifests/jelix-lib.mn

    r814 r819  
    215215  crud_edit.tpl 
    216216  crud_view.tpl 
     217cd lib/jelix/core-modules/jelix/templates/en_EN 
     218  check_install.tpl 
     219cd lib/jelix/core-modules/jelix/templates/en_US 
     220  check_install.tpl 
     221cd lib/jelix/core-modules/jelix/templates/fr_FR 
     222  check_install.tpl 
     223cd lib/jelix/core-modules/jelix/zones 
     224  check_install.zone.php 
    217225 
    218226cd lib/jelix/dao 
  • trunk/lib/jelix-scripts/templates/controller.tpl

    r809 r819  
    1515    function %%method%%() { 
    1616        $rep = $this->getResponse('html'); 
    17          
     17 
     18                // this is a call for the 'welcome' zone after creating a new application 
     19                // remove this line 
     20        $rep->body->assignZone('MAIN', 'jelix~check_install');  
     21 
    1822        return $rep; 
    1923    } 
  • trunk/lib/jelix-scripts/templates/controller.tpl

    r809 r819  
    1515    function %%method%%() { 
    1616        $rep = $this->getResponse('html'); 
    17          
     17 
     18                // this is a call for the 'welcome' zone after creating a new application 
     19                // remove this line 
     20        $rep->body->assignZone('MAIN', 'jelix~check_install');  
     21 
    1822        return $rep; 
    1923    } 
  • trunk/lib/jelix-scripts/templates/controller.tpl

    r809 r819  
    1515    function %%method%%() { 
    1616        $rep = $this->getResponse('html'); 
    17          
     17 
     18                // this is a call for the 'welcome' zone after creating a new application 
     19                // remove this line 
     20        $rep->body->assignZone('MAIN', 'jelix~check_install');  
     21 
    1822        return $rep; 
    1923    } 
  • trunk/lib/jelix-scripts/templates/var/config/defaultconfig.ini.php.tpl

    r810 r819  
    5454; name of url engine :  "simple" or "significant" 
    5555engine        = simple 
     56 
     57; this is the url path to the jelix-www content (you can found this content in lib/jelix-www/) 
     58; because the jelix-www directory is outside the yourapp/www/ directory, you should create a link to 
     59; jelix-www, or copy its content in yourapp/www/ (with a name like 'jelix' for example) 
     60; so you should indicate the relative path of this link/directory to the basePath, or an absolute path. 
     61jelixWWWPath = "jelix/" 
     62 
    5663 
    5764; enable the parsing of the url. Set it to off if the url is already parsed by another program 
  • trunk/lib/jelix-scripts/templates/var/config/defaultconfig.ini.php.tpl

    r810 r819  
    5454; name of url engine :  "simple" or "significant" 
    5555engine        = simple 
     56 
     57; this is the url path to the jelix-www content (you can found this content in lib/jelix-www/) 
     58; because the jelix-www directory is outside the yourapp/www/ directory, you should create a link to 
     59; jelix-www, or copy its content in yourapp/www/ (with a name like 'jelix' for example) 
     60; so you should indicate the relative path of this link/directory to the basePath, or an absolute path. 
     61jelixWWWPath = "jelix/" 
     62 
    5663 
    5764; enable the parsing of the url. Set it to off if the url is already parsed by another program 
  • trunk/lib/jelix-scripts/templates/var/config/defaultconfig.ini.php.tpl

    r810 r819  
    5454; name of url engine :  "simple" or "significant" 
    5555engine        = simple 
     56 
     57; this is the url path to the jelix-www content (you can found this content in lib/jelix-www/) 
     58; because the jelix-www directory is outside the yourapp/www/ directory, you should create a link to 
     59; jelix-www, or copy its content in yourapp/www/ (with a name like 'jelix' for example) 
     60; so you should indicate the relative path of this link/directory to the basePath, or an absolute path. 
     61jelixWWWPath = "jelix/" 
     62 
    5663 
    5764; enable the parsing of the url. Set it to off if the url is already parsed by another program 
  • trunk/lib/jelix-www/design/jelix.css

    r144 r819  
    1 body { 
    2     font-family: Arial, Helvetica, sans-serif; 
    3     font-size: 0.7em; 
     1/* 
     2 * Design and CSS file by Laurent Jouanneau for jelix.org 
     3 * Copyright (c) 2006-2007 by Laurent Jouanneau - adapted by Bastien Jaillot 
     4 * 
     5 * You cannot use this stylesheet on your own site without the permission of the author 
     6 * All right reserved 
     7 */ 
     8 
     9body {   
     10    font-family: Verdana, Arial, Sans;  
     11    font-size:0.8em; 
     12    margin:0; 
     13    background-color:#eff4f6; 
     14    padding-left:1em; 
     15    padding-right:1em; 
    416} 
     17 
     18.logo { 
     19    background: transparent url('images/logo_jelix_moyen.png') top left; 
     20    height: 60px; 
     21    width: 180px; 
     22    position: absolute; 
     23    top: 10px; 
     24    left: 10px; 
     25} 
     26 
     27a { color:#3f6f7a; text-decoration:underline; } 
     28a:visited {  color : #002830;} 
     29a:hover { color: #0f82af; background-color: #d7e7eb; } 
     30 
     31 
     32h1.apptitle { 
     33    margin: 32px 0 60px 200px; 
     34    font-size: 1.7em; 
     35    color: #002830; 
     36} 
     37 
     38/* 
     39 * checker 
     40 *********/ 
     41ul.checkresults { 
     42    border:3px solid black; 
     43    margin: 2em; 
     44    padding:1em; 
     45    list-style-type:none; 
     46} 
     47ul.checkresults li { margin:0; padding:5px; border-top:1px solid black; } 
     48li.checkerror   { background-color:#ff6666;} 
     49li.checkok      { background-color:#a4ffa9;} 
     50li.checkwarning { background-color:#ffbc8f;} 
     51 
     52.nocss { 
     53    display: none; 
     54} 
  • trunk/lib/jelix-www/design/jelix.css

    r144 r819  
    1 body { 
    2     font-family: Arial, Helvetica, sans-serif; 
    3     font-size: 0.7em; 
     1/* 
     2 * Design and CSS file by Laurent Jouanneau for jelix.org 
     3 * Copyright (c) 2006-2007 by Laurent Jouanneau - adapted by Bastien Jaillot 
     4 * 
     5 * You cannot use this stylesheet on your own site without the permission of the author 
     6 * All right reserved 
     7 */ 
     8 
     9body {   
     10    font-family: Verdana, Arial, Sans;  
     11    font-size:0.8em; 
     12    margin:0; 
     13    background-color:#eff4f6; 
     14    padding-left:1em; 
     15    padding-right:1em; 
    416} 
     17 
     18.logo { 
     19    background: transparent url('images/logo_jelix_moyen.png') top left; 
     20    height: 60px; 
     21    width: 180px; 
     22    position: absolute; 
     23    top: 10px; 
     24    left: 10px; 
     25} 
     26 
     27a { color:#3f6f7a; text-decoration:underline; } 
     28a:visited {  color : #002830;} 
     29a:hover { color: #0f82af; background-color: #d7e7eb; } 
     30 
     31 
     32h1.apptitle { 
     33    margin: 32px 0 60px 200px; 
     34    font-size: 1.7em; 
     35    color: #002830; 
     36} 
     37 
     38/* 
     39 * checker 
     40 *********/ 
     41ul.checkresults { 
     42    border:3px solid black; 
     43    margin: 2em; 
     44    padding:1em; 
     45    list-style-type:none; 
     46} 
     47ul.checkresults li { margin:0; padding:5px; border-top:1px solid black; } 
     48li.checkerror   { background-color:#ff6666;} 
     49li.checkok      { background-color:#a4ffa9;} 
     50li.checkwarning { background-color:#ffbc8f;} 
     51 
     52.nocss { 
     53    display: none; 
     54} 
  • trunk/lib/jelix-www/design/jelix.css

    r144 r819  
    1 body { 
    2     font-family: Arial, Helvetica, sans-serif; 
    3     font-size: 0.7em; 
     1/* 
     2 * Design and CSS file by Laurent Jouanneau for jelix.org 
     3 * Copyright (c) 2006-2007 by Laurent Jouanneau - adapted by Bastien Jaillot 
     4 * 
     5 * You cannot use this stylesheet on your own site without the permission of the author 
     6 * All right reserved 
     7 */ 
     8 
     9body {   
     10    font-family: Verdana, Arial, Sans;  
     11    font-size:0.8em; 
     12    margin:0; 
     13    background-color:#eff4f6; 
     14    padding-left:1em; 
     15    padding-right:1em; 
    416} 
     17 
     18.logo { 
     19    background: transparent url('images/logo_jelix_moyen.png') top left; 
     20    height: 60px; 
     21    width: 180px; 
     22    position: absolute; 
     23    top: 10px; 
     24    left: 10px; 
     25} 
     26 
     27a { color:#3f6f7a; text-decoration:underline; } 
     28a:visited {  color : #002830;} 
     29a:hover { color: #0f82af; background-color: #d7e7eb; } 
     30 
     31 
     32h1.apptitle { 
     33    margin: 32px 0 60px 200px; 
     34    font-size: 1.7em; 
     35    color: #002830; 
     36} 
     37 
     38/* 
     39 * checker 
     40 *********/ 
     41ul.checkresults { 
     42    border:3px solid black; 
     43    margin: 2em; 
     44    padding:1em; 
     45    list-style-type:none; 
     46} 
     47ul.checkresults li { margin:0; padding:5px; border-top:1px solid black; } 
     48li.checkerror   { background-color:#ff6666;} 
     49li.checkok      { background-color:#a4ffa9;} 
     50li.checkwarning { background-color:#ffbc8f;} 
     51 
     52.nocss { 
     53    display: none; 
     54} 
  • trunk/lib/jelix/checker.php

    r699 r819  
    6363            echo '<p>',$checker->messages->get('conclusion.ok'),'</p>'; 
    6464        } 
     65        echo "</div>"; 
    6566    } 
    6667} 
  • trunk/lib/jelix/checker.php

    r699 r819  
    6363            echo '<p>',$checker->messages->get('conclusion.ok'),'</p>'; 
    6464        } 
     65        echo "</div>"; 
    6566    } 
    6667} 
  • trunk/lib/jelix/checker.php

    r699 r819  
    6363            echo '<p>',$checker->messages->get('conclusion.ok'),'</p>'; 
    6464        } 
     65        echo "</div>"; 
    6566    } 
    6667} 
  • trunk/lib/jelix/CREDITS

    r817 r819  
    7373 - little improvement in the jControllerDaoCrud API (#330, #487) 
    7474 - fixed minor bugs 
    75  - default template and response generated by createapp (#496
     75 - default template and response generated by createapp (#496, #480
    7676 
    7777Nicolas Jeudy (aka njeudy) 
  • trunk/lib/jelix/CREDITS

    r817 r819  
    7373 - little improvement in the jControllerDaoCrud API (#330, #487) 
    7474 - fixed minor bugs 
    75  - default template and response generated by createapp (#496
     75 - default template and response generated by createapp (#496, #480
    7676 
    7777Nicolas Jeudy (aka njeudy) 
  • trunk/lib/jelix/CREDITS

    r817 r819  
    7373 - little improvement in the jControllerDaoCrud API (#330, #487) 
    7474 - fixed minor bugs 
    75  - default template and response generated by createapp (#496
     75 - default template and response generated by createapp (#496, #480
    7676 
    7777Nicolas Jeudy (aka njeudy) 
Download in other formats: Unified Diff Zip Archive