Ignore:
Timestamp:
01/19/10 00:35:44 (14 years ago)
Author:
nanardon
Message:
  • tools now show non exported objects by default, use --noexp to hide them
File:
1 edited

Legend:

Unmodified
Added
Removed
  • LATMOS-Accounts/bin/la-query

    r612 r664  
    3232    'filefmt=s'  => \my $filefmt, 
    3333    'ro'         => \my $with_ro, 
     34    'noexp'      => \my $noexp, 
     35    'exp'        => \my $exp, 
    3436    'help'       => sub { pod2usage(0) }, 
    3537) or pod2usage(); 
     
    5254 
    5355Query will be performed on this object. Default is the 'User' object. 
     56 
     57=item --noexp 
     58 
     59Do not take into account not porpagated objects 
     60 
     61=item --exp 
     62 
     63Take into account propagated user (default) 
    5464 
    5565=item -e|--empty 
     
    104114$labase && $labase->load or die "Cannot load base"; 
    105115 
     116$labase->wexported($noexp ? 0 : 1); 
     117 
    106118if ($filefmt){ 
    107119        open my $hfmt, $filefmt or die "Cannot open $filefmt\n"; 
Note: See TracChangeset for help on using the changeset viewer.