# This module is licensed under the terms of the BSD 3-Clause License # <http://www.c-tanzer.at/license/bsd_3c.html>. # **************************************************************************** # #++ # Name # GTW.OMP.SWP.__init__ # # Purpose # Package defining a partial object model for static web pages # # Revision Dates # 31-Jan-2010 (CT) Creation # 9-Oct-2012 (CT) Add `_desc_` # 15-Jun-2013 (CT) Use `MOM.Derived_PNS` # ««revision-date»»··· #-- from _GTW._OMP import OMP from _MOM import MOM import _MOM.Derived_PNS _desc_ = __doc__ = """ Partial object model for static web pages. """ SWP = MOM.Derived_PNS(parent=MOM, pns_alias="SWP") OMP._Export("SWP") ### __END__ GTW.OMP.SWP.__init__
# # This module is licensed under the terms of the BSD 3-Clause License # <http://www.c-tanzer.at/license/bsd_3c.html>. # **************************************************************************** # # ++ # Name # GTW.OMP.NET.__init__ # # Purpose # Package defining a partial object model for network objects # # Revision Dates # 6-Mar-2012 (CT) Creation # 15-Jun-2013 (CT) Use `MOM.Derived_PNS` # ««revision-date»»··· # -- from _GTW._OMP import OMP from _MOM import MOM import _MOM.Derived_PNS _desc_ = __doc__ = """ Partial object model for network objects. """ NET = MOM.Derived_PNS(parent=MOM) OMP._Export("NET") ### __END__ GTW.OMP.NET.__init__
# This module is licensed under the terms of the BSD 3-Clause License # <http://www.c-tanzer.at/license/bsd_3c.html>. # **************************************************************************** # #++ # Name # GTW.OMP.Auth.__init__ # # Purpose # Package defining a partial object model for Authentication # # Revision Dates # 13-Jan-2010 (MG) Creation # 9-Oct-2012 (CT) Add `_desc_` # 15-Jun-2013 (CT) Use `MOM.Derived_PNS` # ««revision-date»»··· #-- from _GTW._OMP import OMP from _MOM import MOM import _MOM.Derived_PNS _desc_ = __doc__ = """ Partial object model for authentication: accounts, groups, and their relations. """ Auth = MOM.Derived_PNS (parent = MOM, pns_alias = "Auth") OMP._Export ("Auth") ### __END__ GTW.OMP.Auth.__init__
# **************************************************************************** # #++ # Name # GTW.OMP.PAP.__init__ # # Purpose # Package defining a partial object model for Persons, Addresses, and # Phone-Numbers # # Revision Dates # 30-Dec-2009 (CT) Creation # 9-Oct-2012 (CT) Add `_desc_` # 15-Jun-2013 (CT) Use `MOM.Derived_PNS` # ««revision-date»»··· #-- from _GTW._OMP import OMP from _MOM import MOM import _MOM.Derived_PNS _desc_ = __doc__ = """ Partial object model for (natural and legal) persons and their (contact) properties. """ PAP = MOM.Derived_PNS (parent = MOM, pns_alias = "PAP") OMP._Export ("PAP") ### __END__ GTW.OMP.PAP.__init__
# This module is licensed under the terms of the BSD 3-Clause License # <http://www.c-tanzer.at/license/bsd_3c.html>. # **************************************************************************** # #++ # Name # GTW.OMP.SRM.__init__ # # Purpose # Package defining a partial object model for sailing regattas # # Revision Dates # 15-Apr-2010 (CT) Creation # 9-Oct-2012 (CT) Add `_desc_` # 15-Jun-2013 (CT) Use `MOM.Derived_PNS` # ««revision-date»»··· #-- from _GTW._OMP import OMP from _MOM import MOM import _MOM.Derived_PNS _desc_ = __doc__ = """ Partial object model for the management of sailboat regattas. """ SRM = MOM.Derived_PNS (parent = MOM, pns_alias = "SRM") OMP._Export ("SRM") ### __END__ GTW.OMP.SRM.__init__
# **************************************************************************** # #++ # Name # GTW.OMP.PAP.__init__ # # Purpose # Package defining a partial object model for Persons, Addresses, and # Phone-Numbers # # Revision Dates # 30-Dec-2009 (CT) Creation # 9-Oct-2012 (CT) Add `_desc_` # 15-Jun-2013 (CT) Use `MOM.Derived_PNS` # ««revision-date»»··· #-- from _GTW._OMP import OMP from _MOM import MOM import _MOM.Derived_PNS _desc_ = __doc__ = """ Partial object model for (natural and legal) persons and their (contact) properties. """ PAP = MOM.Derived_PNS(parent=MOM, pns_alias="PAP") OMP._Export("PAP") ### __END__ GTW.OMP.PAP.__init__
# This module is licensed under the terms of the BSD 3-Clause License # <http://www.c-tanzer.at/license/bsd_3c.html>. # **************************************************************************** # #++ # Name # GTW.OMP.DNS.__init__ # # Purpose # Package defining a partial object model for Domain-Name Service # (DNS) # # Revision Dates # 27-Aug-2012 (RS) Creation # 15-Jun-2013 (CT) Use `MOM.Derived_PNS` # ««revision-date»»··· #-- from _GTW._OMP import OMP from _MOM import MOM import _MOM.Derived_PNS _desc_ = __doc__ = """ Partial object model for domain name service. """ DNS = MOM.Derived_PNS (parent = MOM, pns_alias = "DNS") OMP._Export ("DNS") ### __END__ GTW.OMP.DNS.__init__
# This module is licensed under the terms of the BSD 3-Clause License # <http://www.c-tanzer.at/license/bsd_3c.html>. # **************************************************************************** # #++ # Name # GTW.OMP.DNS.__init__ # # Purpose # Package defining a partial object model for Domain-Name Service # (DNS) # # Revision Dates # 27-Aug-2012 (RS) Creation # 15-Jun-2013 (CT) Use `MOM.Derived_PNS` # ««revision-date»»··· #-- from _GTW._OMP import OMP from _MOM import MOM import _MOM.Derived_PNS _desc_ = __doc__ = """ Partial object model for domain name service. """ DNS = MOM.Derived_PNS(parent=MOM, pns_alias="DNS") OMP._Export("DNS") ### __END__ GTW.OMP.DNS.__init__
# This module is licensed under the terms of the BSD 3-Clause License # <http://www.c-tanzer.at/license/bsd_3c.html>. # **************************************************************************** # #++ # Name # GTW.OMP.EVT.__init__ # # Purpose # Package defining a partial object model for calendary events # # Revision Dates # 10-Mar-2010 (CT) Creation # 9-Oct-2012 (CT) Add `_desc_` # 15-Jun-2013 (CT) Use `MOM.Derived_PNS` # ««revision-date»»··· #-- from _GTW._OMP import OMP from _MOM import MOM import _MOM.Derived_PNS _desc_ = __doc__ = """ Partial object model for calendary events. """ EVT = MOM.Derived_PNS (parent = MOM, pns_alias = "EVT") OMP._Export ("EVT") ### __END__ GTW.OMP.EVT.__init__
# This module is licensed under the terms of the BSD 3-Clause License # <http://www.c-tanzer.at/license/bsd_3c.html>. # **************************************************************************** # #++ # Name # GTW.OMP.SRM.__init__ # # Purpose # Package defining a partial object model for sailing regattas # # Revision Dates # 15-Apr-2010 (CT) Creation # 9-Oct-2012 (CT) Add `_desc_` # 15-Jun-2013 (CT) Use `MOM.Derived_PNS` # ««revision-date»»··· #-- from _GTW._OMP import OMP from _MOM import MOM import _MOM.Derived_PNS _desc_ = __doc__ = """ Partial object model for the management of sailboat regattas. """ SRM = MOM.Derived_PNS(parent=MOM, pns_alias="SRM") OMP._Export("SRM") ### __END__ GTW.OMP.SRM.__init__
# # This module is licensed under the terms of the BSD 3-Clause License # <http://www.c-tanzer.at/license/bsd_3c.html>. # **************************************************************************** # #++ # Name # GTW.OMP.NET.__init__ # # Purpose # Package defining a partial object model for network objects # # Revision Dates # 6-Mar-2012 (CT) Creation # 15-Jun-2013 (CT) Use `MOM.Derived_PNS` # ««revision-date»»··· #-- from _GTW._OMP import OMP from _MOM import MOM import _MOM.Derived_PNS _desc_ = __doc__ = """ Partial object model for network objects. """ NET = MOM.Derived_PNS (parent = MOM) OMP._Export ("NET") ### __END__ GTW.OMP.NET.__init__
# This module is licensed under the terms of the BSD 3-Clause License # <http://www.c-tanzer.at/license/bsd_3c.html>. # **************************************************************************** # #++ # Name # GTW.OMP.SWP.__init__ # # Purpose # Package defining a partial object model for static web pages # # Revision Dates # 31-Jan-2010 (CT) Creation # 9-Oct-2012 (CT) Add `_desc_` # 15-Jun-2013 (CT) Use `MOM.Derived_PNS` # ««revision-date»»··· #-- from _GTW._OMP import OMP from _MOM import MOM import _MOM.Derived_PNS _desc_ = __doc__ = """ Partial object model for static web pages. """ SWP = MOM.Derived_PNS (parent = MOM, pns_alias = "SWP") OMP._Export ("SWP") ### __END__ GTW.OMP.SWP.__init__