Changeset 968

Show
Ignore:
Timestamp:
05/31/08 02:10:31 (6 months ago)
Author:
bastnic
Message:

fixed #468 : bad spelling for data plural

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.0.x/lib/jelix-modules/jauth/install/var/config/auth.coord.ini.php

    r717 r968  
    6565persistant_crypt_key= exampleOfCryptKey 
    6666 
    67 ; the name of the cookie which is used to store datas for the authentification 
     67; the name of the cookie which is used to store data for the authentification 
    6868persistant_cookie_name=jelixAuthentificationCookie 
    6969 
     
    7575;------- parameters for the "Db" driver 
    7676[Db] 
    77 ; name of the dao to get user datas 
     77; name of the dao to get user data 
    7878dao = "" 
    7979 
  • branches/1.0.x/lib/jelix-modules/jauth/install/var/config/auth.coord.ini.php

    r717 r968  
    6565persistant_crypt_key= exampleOfCryptKey 
    6666 
    67 ; the name of the cookie which is used to store datas for the authentification 
     67; the name of the cookie which is used to store data for the authentification 
    6868persistant_cookie_name=jelixAuthentificationCookie 
    6969 
     
    7575;------- parameters for the "Db" driver 
    7676[Db] 
    77 ; name of the dao to get user datas 
     77; name of the dao to get user data 
    7878dao = "" 
    7979 
  • branches/1.0.x/lib/jelix-modules/jauth/install/var/config/auth.coord.ini.php

    r717 r968  
    6565persistant_crypt_key= exampleOfCryptKey 
    6666 
    67 ; the name of the cookie which is used to store datas for the authentification 
     67; the name of the cookie which is used to store data for the authentification 
    6868persistant_cookie_name=jelixAuthentificationCookie 
    6969 
     
    7575;------- parameters for the "Db" driver 
    7676[Db] 
    77 ; name of the dao to get user datas 
     77; name of the dao to get user data 
    7878dao = "" 
    7979 
  • branches/1.0.x/lib/jelix-modules/jauth/install/var/config/auth.coord.ini.php

    r717 r968  
    6565persistant_crypt_key= exampleOfCryptKey 
    6666 
    67 ; the name of the cookie which is used to store datas for the authentification 
     67; the name of the cookie which is used to store data for the authentification 
    6868persistant_cookie_name=jelixAuthentificationCookie 
    6969 
     
    7575;------- parameters for the "Db" driver 
    7676[Db] 
    77 ; name of the dao to get user datas 
     77; name of the dao to get user data 
    7878dao = "" 
    7979 
  • branches/1.0.x/lib/jelix/acl/jAcl.class.php

    r699 r968  
    2626 
    2727    /** 
    28      * clear some cached datas, it a cache exists in the driver.. 
     28     * clear some cached data, it a cache exists in the driver.. 
    2929     */ 
    3030    public function clearCache(); 
  • branches/1.0.x/lib/jelix/acl/jAcl.class.php

    r699 r968  
    2626 
    2727    /** 
    28      * clear some cached datas, it a cache exists in the driver.. 
     28     * clear some cached data, it a cache exists in the driver.. 
    2929     */ 
    3030    public function clearCache(); 
  • branches/1.0.x/lib/jelix/acl/jAcl.class.php

    r699 r968  
    2626 
    2727    /** 
    28      * clear some cached datas, it a cache exists in the driver.. 
     28     * clear some cached data, it a cache exists in the driver.. 
    2929     */ 
    3030    public function clearCache(); 
  • branches/1.0.x/lib/jelix/acl/jAcl.class.php

    r699 r968  
    2626 
    2727    /** 
    28      * clear some cached datas, it a cache exists in the driver.. 
     28     * clear some cached data, it a cache exists in the driver.. 
    2929     */ 
    3030    public function clearCache(); 
  • branches/1.0.x/lib/jelix/auth/jAuth.class.php

    r750 r968  
    2828 
    2929    /** 
    30      * creates a new user object, with some first datas.. 
     30     * creates a new user object, with some first data.. 
    3131     * Careful : it doesn't create a user in a database for example. Just an object. 
    3232     * @param string $login the user login 
     
    4646 
    4747    /** 
    48      * Erase user datas of the user $login 
     48     * Erase user data of the user $login 
    4949     * @param string $login the login of the user to remove 
    5050     */ 
     
    5252 
    5353    /** 
    54     * save updated datas of a user 
     54    * save updated data of a user 
    5555    * warning : should not save the password ! 
    5656    * @param object $user the user data container 
     
    149149 
    150150    /** 
    151      * load user datas 
     151     * load user data 
    152152     * 
    153153     * This method returns an object, generated by the driver, and which contains 
    154      * datas corresponding to the given login. This method should be called if you want 
    155      * to update datas of a user. see updateUser method. 
     154     * data corresponding to the given login. This method should be called if you want 
     155     * to update data of a user. see updateUser method. 
    156156     * 
    157157     * @param string $login 
     
    195195     * 
    196196     * @param  object $user the user data 
    197      * @return object the user (eventually, with additional datas
     197     * @return object the user (eventually, with additional data
    198198     */ 
    199199    public static function saveNewUser($user){ 
     
    206206 
    207207    /** 
    208      * update user datas 
     208     * update user data 
    209209     *  
    210210     * It send a AuthUpdateUser event if the saving has succeed. If you want 
     
    221221     *  the type of $user depends of the driver, so it can have other properties. 
    222222     *  
    223      * @param object $user  user datas 
     223     * @param object $user  user data 
    224224     */ 
    225225    public static function updateUser($user){ 
     
    364364   /** 
    365365    * return the user stored in the php session 
    366     * @return object the user datas 
     366    * @return object the user data 
    367367    */ 
    368368    public static function getUserSession (){ 
  • branches/1.0.x/lib/jelix/auth/jAuth.class.php

    r750 r968  
    2828 
    2929    /** 
    30      * creates a new user object, with some first datas.. 
     30     * creates a new user object, with some first data.. 
    3131     * Careful : it doesn't create a user in a database for example. Just an object. 
    3232     * @param string $login the user login 
     
    4646 
    4747    /** 
    48      * Erase user datas of the user $login 
     48     * Erase user data of the user $login 
    4949     * @param string $login the login of the user to remove 
    5050     */ 
     
    5252 
    5353    /** 
    54     * save updated datas of a user 
     54    * save updated data of a user 
    5555    * warning : should not save the password ! 
    5656    * @param object $user the user data container 
     
    149149 
    150150    /** 
    151      * load user datas 
     151     * load user data 
    152152     * 
    153153     * This method returns an object, generated by the driver, and which contains 
    154      * datas corresponding to the given login. This method should be called if you want 
    155      * to update datas of a user. see updateUser method. 
     154     * data corresponding to the given login. This method should be called if you want 
     155     * to update data of a user. see updateUser method. 
    156156     * 
    157157     * @param string $login 
     
    195195     * 
    196196     * @param  object $user the user data 
    197      * @return object the user (eventually, with additional datas
     197     * @return object the user (eventually, with additional data
    198198     */ 
    199199    public static function saveNewUser($user){ 
     
    206206 
    207207    /** 
    208      * update user datas 
     208     * update user data 
    209209     *  
    210210     * It send a AuthUpdateUser event if the saving has succeed. If you want 
     
    221221     *  the type of $user depends of the driver, so it can have other properties. 
    222222     *  
    223      * @param object $user  user datas 
     223     * @param object $user  user data 
    224224     */ 
    225225    public static function updateUser($user){ 
     
    364364   /** 
    365365    * return the user stored in the php session 
    366     * @return object the user datas 
     366    * @return object the user data 
    367367    */ 
    368368    public static function getUserSession (){ 
  • branches/1.0.x/lib/jelix/auth/jAuth.class.php

    r750 r968  
    2828 
    2929    /** 
    30      * creates a new user object, with some first datas.. 
     30     * creates a new user object, with some first data.. 
    3131     * Careful : it doesn't create a user in a database for example. Just an object. 
    3232     * @param string $login the user login 
     
    4646 
    4747    /** 
    48      * Erase user datas of the user $login 
     48     * Erase user data of the user $login 
    4949     * @param string $login the login of the user to remove 
    5050     */ 
     
    5252 
    5353    /** 
    54     * save updated datas of a user 
     54    * save updated data of a user 
    5555    * warning : should not save the password ! 
    5656    * @param object $user the user data container 
     
    149149 
    150150    /** 
    151      * load user datas 
     151     * load user data 
    152152     * 
    153153     * This method returns an object, generated by the driver, and which contains 
    154      * datas corresponding to the given login. This method should be called if you want 
    155      * to update datas of a user. see updateUser method. 
     154     * data corresponding to the given login. This method should be called if you want 
     155     * to update data of a user. see updateUser method. 
    156156     * 
    157157     * @param string $login 
     
    195195     * 
    196196     * @param  object $user the user data 
    197      * @return object the user (eventually, with additional datas
     197     * @return object the user (eventually, with additional data
    198198     */ 
    199199    public static function saveNewUser($user){ 
     
    206206 
    207207    /** 
    208      * update user datas 
     208     * update user data 
    209209     *  
    210210     * It send a AuthUpdateUser event if the saving has succeed. If you want 
     
    221221     *  the type of $user depends of the driver, so it can have other properties. 
    222222     *  
    223      * @param object $user  user datas 
     223     * @param object $user  user data 
    224224     */ 
    225225    public static function updateUser($user){ 
     
    364364   /** 
    365365    * return the user stored in the php session 
    366     * @return object the user datas 
     366    * @return object the user data 
    367367    */ 
    368368    public static function getUserSession (){ 
  • branches/1.0.x/lib/jelix/auth/jAuth.class.php

    r750 r968  
    2828 
    2929    /** 
    30      * creates a new user object, with some first datas.. 
     30     * creates a new user object, with some first data.. 
    3131     * Careful : it doesn't create a user in a database for example. Just an object. 
    3232     * @param string $login the user login 
     
    4646 
    4747    /** 
    48      * Erase user datas of the user $login 
     48     * Erase user data of the user $login 
    4949     * @param string $login the login of the user to remove 
    5050     */ 
     
    5252 
    5353    /** 
    54     * save updated datas of a user 
     54    * save updated data of a user 
    5555    * warning : should not save the password ! 
    5656    * @param object $user the user data container 
     
    149149 
    150150    /** 
    151      * load user datas 
     151     * load user data 
    152152     * 
    153153     * This method returns an object, generated by the driver, and which contains 
    154      * datas corresponding to the given login. This method should be called if you want 
    155      * to update datas of a user. see updateUser method. 
     154     * data corresponding to the given login. This method should be called if you want 
     155     * to update data of a user. see updateUser method. 
    156156     * 
    157157     * @param string $login 
     
    195195     * 
    196196     * @param  object $user the user data 
    197      * @return object the user (eventually, with additional datas
     197     * @return object the user (eventually, with additional data
    198198     */ 
    199199    public static function saveNewUser($user){ 
     
    206206 
    207207    /** 
    208      * update user datas 
     208     * update user data 
    209209     *  
    210210     * It send a AuthUpdateUser event if the saving has succeed. If you want 
     
    221221     *  the type of $user depends of the driver, so it can have other properties. 
    222222     *  
    223      * @param object $user  user datas 
     223     * @param object $user  user data 
    224224     */ 
    225225    public static function updateUser($user){ 
     
    364364   /** 
    365365    * return the user stored in the php session 
    366     * @return object the user datas 
     366    * @return object the user data 
    367367    */ 
    368368    public static function getUserSession (){ 
  • branches/1.0.x/lib/jelix/controllers/jControllerDaoCrud.class.php

    r799 r968  
    124124 
    125125    /** 
    126      * you can do your own datas check of a form by overloading this method. 
     126     * you can do your own data check of a form by overloading this method. 
    127127     * You can also do some other things. It is called only if the $form->check() is ok. 
    128      * and before the save of the datas
     128     * and before the save of the data
    129129     * @param jFormsBase $form the current form 
    130130     * @param boolean $calltype   true for an update, false for a create 
     
    248248 
    249249    /** 
    250      * save datas of a form in a new record 
     250     * save data of a form in a new record 
    251251     */ 
    252252    function savecreate(){ 
     
    348348 
    349349    /** 
    350      * save datas of a form in a new record 
     350     * save data of a form in a new record 
    351351     */ 
    352352    function saveupdate(){ 
  • branches/1.0.x/lib/jelix/controllers/jControllerDaoCrud.class.php

    r799 r968  
    124124 
    125125    /** 
    126      * you can do your own datas check of a form by overloading this method. 
     126     * you can do your own data check of a form by overloading this method. 
    127127     * You can also do some other things. It is called only if the $form->check() is ok. 
    128      * and before the save of the datas
     128     * and before the save of the data
    129129     * @param jFormsBase $form the current form 
    130130     * @param boolean $calltype   true for an update, false for a create 
     
    248248 
    249249    /** 
    250      * save datas of a form in a new record 
     250     * save data of a form in a new record 
    251251     */ 
    252252    function savecreate(){ 
     
    348348 
    349349    /** 
    350      * save datas of a form in a new record 
     350     * save data of a form in a new record 
    351351     */ 
    352352    function saveupdate(){ 
  • branches/1.0.x/lib/jelix/controllers/jControllerDaoCrud.class.php

    r799 r968  
    124124 
    125125    /** 
    126      * you can do your own datas check of a form by overloading this method. 
     126     * you can do your own data check of a form by overloading this method. 
    127127     * You can also do some other things. It is called only if the $form->check() is ok. 
    128      * and before the save of the datas
     128     * and before the save of the data
    129129     * @param jFormsBase $form the current form 
    130130     * @param boolean $calltype   true for an update, false for a create 
     
    248248 
    249249    /** 
    250      * save datas of a form in a new record 
     250     * save data of a form in a new record 
    251251     */ 
    252252    function savecreate(){ 
     
    348348 
    349349    /** 
    350      * save datas of a form in a new record 
     350     * save data of a form in a new record 
    351351     */ 
    352352    function saveupdate(){ 
  • branches/1.0.x/lib/jelix/controllers/jControllerDaoCrud.class.php

    r799 r968  
    124124 
    125125    /** 
    126      * you can do your own datas check of a form by overloading this method. 
     126     * you can do your own data check of a form by overloading this method. 
    127127     * You can also do some other things. It is called only if the $form->check() is ok. 
    128      * and before the save of the datas
     128     * and before the save of the data
    129129     * @param jFormsBase $form the current form 
    130130     * @param boolean $calltype   true for an update, false for a create 
     
    248248 
    249249    /** 
    250      * save datas of a form in a new record 
     250     * save data of a form in a new record 
    251251     */ 
    252252    function savecreate(){ 
     
    348348 
    349349    /** 
    350      * save datas of a form in a new record 
     350     * save data of a form in a new record 
    351351     */ 
    352352    function saveupdate(){ 
  • branches/1.0.x/lib/jelix/core/jUrl.class.php

    r943 r968  
    3434 
    3535    /** 
    36     * Create a jurl object with the given action datas 
     36    * Create a jurl object with the given action data 
    3737    * @param jUrlAction $url  information about the action 
    3838    * @return jUrl the url correspondant to the action 
     
    111111 
    112112/** 
    113  * A container to store url datas for an action 
     113 * A container to store url data for an action 
    114114 * @package  jelix 
    115115 * @subpackage core_url 
     
    156156 
    157157/** 
    158  * Object that contains url datas, and which provides static method helpers 
     158 * Object that contains url data, and which provides static method helpers 
    159159 * @package  jelix 
    160160 * @subpackage core_url 
  • branches/1.0.x/lib/jelix/core/jUrl.class.php

    r943 r968  
    3434 
    3535    /** 
    36     * Create a jurl object with the given action datas 
     36    * Create a jurl object with the given action data 
    3737    * @param jUrlAction $url  information about the action 
    3838    * @return jUrl the url correspondant to the action 
     
    111111 
    112112/** 
    113  * A container to store url datas for an action 
     113 * A container to store url data for an action 
    114114 * @package  jelix 
    115115 * @subpackage core_url 
     
    156156 
    157157/** 
    158  * Object that contains url datas, and which provides static method helpers 
     158 * Object that contains url data, and which provides static method helpers 
    159159 * @package  jelix 
    160160 * @subpackage core_url 
  • branches/1.0.x/lib/jelix/core/jUrl.class.php

    r943 r968  
    3434 
    3535    /** 
    36     * Create a jurl object with the given action datas 
     36    * Create a jurl object with the given action data 
    3737    * @param jUrlAction $url  information about the action 
    3838    * @return jUrl the url correspondant to the action 
     
    111111 
    112112/** 
    113  * A container to store url datas for an action 
     113 * A container to store url data for an action 
    114114 * @package  jelix 
    115115 * @subpackage core_url 
     
    156156 
    157157/** 
    158  * Object that contains url datas, and which provides static method helpers 
     158 * Object that contains url data, and which provides static method helpers 
    159159 * @package  jelix 
    160160 * @subpackage core_url 
  • branches/1.0.x/lib/jelix/core/jUrl.class.php

    r943 r968  
    3434 
    3535    /** 
    36     * Create a jurl object with the given action datas 
     36    * Create a jurl object with the given action data 
    3737    * @param jUrlAction $url  information about the action 
    3838    * @return jUrl the url correspondant to the action 
     
    111111 
    112112/** 
    113  * A container to store url datas for an action 
     113 * A container to store url data for an action 
    114114 * @package  jelix 
    115115 * @subpackage core_url 
     
    156156 
    157157/** 
    158  * Object that contains url datas, and which provides static method helpers 
     158 * Object that contains url data, and which provides static method helpers 
    159159 * @package  jelix 
    160160 * @subpackage core_url 
  • branches/1.0.x/lib/jelix/core/response/jResponseJson.class.php

    r705 r968  
    3030 
    3131    /** 
    32      * datas in PHP you want to send 
     32     * data in PHP you want to send 
    3333     * @var mixed 
    3434     */ 
  • branches/1.0.x/lib/jelix/core/response/jResponseJson.class.php

    r705 r968  
    3030 
    3131    /** 
    32      * datas in PHP you want to send 
     32     * data in PHP you want to send 
    3333     * @var mixed 
    3434     */ 
  • branches/1.0.x/lib/jelix/core/response/jResponseJson.class.php

    r705 r968  
    3030 
    3131    /** 
    32      * datas in PHP you want to send 
     32     * data in PHP you want to send 
    3333     * @var mixed 
    3434     */ 
  • branches/1.0.x/lib/jelix/core/response/jResponseJson.class.php

    r705 r968  
    3030 
    3131    /** 
    32      * datas in PHP you want to send 
     32     * data in PHP you want to send 
    3333     * @var mixed 
    3434     */ 
  • branches/1.0.x/lib/jelix/core/response/jResponseJsonrpc.class.php

    r705 r968  
    2727 
    2828    /** 
    29      * PHP datas you want to return 
     29     * PHP data you want to return 
    3030     * @var mixed 
    3131     */