Guest User

Untitled

a guest
Jan 15th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. from zope.interface import Interface
  2. from zope import schema
  3. from zope.i18nmessageid import MessageFactory
  4.  
  5. _ = MessageFactory('test.gwoptimizer')
  6.  
  7. class IGWOConfiguration(Interface):
  8. """ This interface defines the configlet. """
  9.  
  10. gwouser = schema.TextLine(title=_(u"Nombre de usuario"),
  11. required=True)
  12. gwopassword = schema.TextLine(title=_(u"Password"),
  13. required=True)
Add Comment
Please, Sign In to add comment