Changeset 334 for trunk/bin


Ignore:
Timestamp:
May 13, 2008 4:14:53 AM (16 years ago)
Author:
quinn
Message:

Fixed lots of misplings. I'm so embarrassed! ;P

Location:
trunk/bin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/bin/acl.cli.php

    r234 r334  
    220220"Bob can edit" (period).
    221221
    222 Each access object is stored as a node in hierarchial tree structures. A
    223 premission granted to a node is applied to all its children. If a child
     222Each access object is stored as a node in hierarchical tree structures. A
     223permission granted to a node is applied to all its children. If a child
    224224node is specified a different permission that is more specific that
    225 anything on the branch it will take precidence. If no permission is
     225anything on the branch it will take precedence. If no permission is
    226226specified, root is used for that object. Root, in this case, means
    227227"anything" since it is at the top of all branches.
     
    250250For the add*, mv*, grant, and revoke commands if any of the optional
    251251args are not provided, 'root' is assumed. For the delete command
    252 'null' is considered a wildcard to delete all objects of that type.
     252'null' is considered a wild-card to delete all objects of that type.
    253253
    254254
     
    335335    global $this_script;
    336336   
    337     // Retreive access value from db.
     337    // Retrieve access value from db.
    338338    $qid = $db->query("
    339339        SELECT aro_tbl.name AS aro, aco_tbl.name AS aco, axo_tbl.name AS axo, acl_tbl.access, acl_tbl.added_datetime
  • trunk/bin/module_maker/_config.inc.php

    r238 r334  
    4949$app->start();
    5050
    51 // Global DB object. Automatically preconfigured by $app->start().
     51// Global DB object. Automatically pre-configured by $app->start().
    5252$db =& DB::getInstance();
    5353
  • trunk/bin/module_maker/module.cli.php

    r319 r334  
    8181$public_detail_template = $module_name_singular . '_view.ihtml';
    8282
    83 // Databaes names
     83// Database names
    8484$db_tbl = $module_name_singular . '_tbl';
    8585$primary_key = $module_name_singular . '_id';
Note: See TracChangeset for help on using the changeset viewer.