Package ajango :: Package database :: Package validate :: Class ValidationManager
[hide private]
[frames] | no frames]

Class ValidationManager

source code

              object --+    
                       |    
core.generable.Generable --+
                           |
                          ValidationManager

Klasa zarzadzajaca obiektami sprawdzajacymi.

Nested Classes [hide private]

Inherited from core.generable.Generable: __metaclass__

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__len__(self) source code
 
add_validate(self, param)
Dodanie obiektu sprawdzajacego.
source code
 
is_valid(self, text)
Sprawdza czy pola wejsciowe sa poprawnie wypelnione.
source code
 
get_messages(self)
Pobranie wiadomosci bledu pola wejsciowego.
source code
 
execute(self, view, view_name='view')
Wykonanie zadan obiektu.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  __abstractmethods__ = frozenset([])
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

execute(self, view, view_name='view')

source code 

Wykonanie zadan obiektu.

Parameters:
  • self - Obiekt bazowy
  • view - Widok generujacy
  • view_name - Nazwa obiektu w wygenerowanym kodzie
Overrides: core.generable.Generable.execute