Coverage for ipalib/output : 100%
        
        
Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
| 
 # Authors: # Jason Gerard DeRose <jderose@redhat.com> # # Copyright (C) 2009 Red Hat # see file 'COPYING' for use and warranty information # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. 
 Simple description of return values. """ 
 
 
 """ Simple description of a member in the return value ``dict``. 
 This class controls both the type of object being returned by a command as well as how the output will be displayed. 
 For example, this class defines two return results: an entry and a value. 
 >>> from ipalib import crud, output >>> class user(crud.Update): ... ... has_output = ( ... output.Entry('result'), ... output.value, ... ) 
 The order of the values in has_output controls the order of output. If you have values that you don't want to be printed then add ``'no_display'`` to flags. 
 The difference between ``'no_display'`` and ``'no_output'`` is that ``'no_output'`` will prevent a Param value from being returned at all. ``'no_display'`` will cause the API to return a value, it simply won't be displayed to the user. This is so some things may be returned that while not interesting to us, but may be to others. 
 >>> from ipalib import crud, output >>> myvalue = output.Output('myvalue', unicode, ... 'Do not print this value', flags=['no_display'], ... ) >>> class user(crud.Update): ... ... has_output = ( ... output.Entry('result'), ... myvalue, ... ) """ 
 
 
 self.__class__.__name__, self.name, self.type, self.doc, ) 
 
 
 
 output[%r][%d]: need a %r; got a %r: %r""" 
 
 self.name, i, dict, type(entry), entry) ) 
 
 
 _('User-friendly description of action performed') ) 
 _("The primary_key value of the entry, e.g. 'jdoe' for a user"), flags=['no_display'], ) 
 
 summary, Entry('result'), value, ) 
 summary, ListOfEntries('result'), Output('count', int, _('Number of entries returned')), Output('truncated', bool, _('True if not all results were returned')), ) 
 summary, Output('result', dict, _('List of deletions that failed')), value, ) 
 summary, Output('result', bool, _('True means the operation was successful')), value, ) 
  |