Mercurial > libervia-backend
comparison frontends/src/jp/cmd_invitation.py @ 2285:688ff67d6ae9
jp (invitation/create): typo
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 29 Jun 2017 20:37:06 +0200 |
parents | 45b89d7c5c81 |
children | c05000d00dbb |
comparison
equal
deleted
inserted
replaced
2284:4fd010f29f99 | 2285:688ff67d6ae9 |
---|---|
39 self.parser.add_argument("-n", "--name", type=base.unicode_decoder, default='', help='name of the invitee') | 39 self.parser.add_argument("-n", "--name", type=base.unicode_decoder, default='', help='name of the invitee') |
40 self.parser.add_argument("-N", "--host-name", type=base.unicode_decoder, default='', help='name of the host') | 40 self.parser.add_argument("-N", "--host-name", type=base.unicode_decoder, default='', help='name of the host') |
41 self.parser.add_argument("-e", "--email", type=base.unicode_decoder, default='', help='email to send the invitation to (if --no-email is set, email will just be saved)') | 41 self.parser.add_argument("-e", "--email", type=base.unicode_decoder, default='', help='email to send the invitation to (if --no-email is set, email will just be saved)') |
42 self.parser.add_argument("--no-email", action="store_true", help='do NOT send invitation email') | 42 self.parser.add_argument("--no-email", action="store_true", help='do NOT send invitation email') |
43 self.parser.add_argument("-l", "--lang", type=base.unicode_decoder, default='', help='main language spoken by the invitee') | 43 self.parser.add_argument("-l", "--lang", type=base.unicode_decoder, default='', help='main language spoken by the invitee') |
44 self.parser.add_argument("-u", "--url", type=base.unicode_decoder, default='', help='template to construt the URL') | 44 self.parser.add_argument("-u", "--url", type=base.unicode_decoder, default='', help='template to construct the URL') |
45 self.parser.add_argument("-s", "--subject", type=base.unicode_decoder, default='', help='subject of the invitation email (default: generic subject)') | 45 self.parser.add_argument("-s", "--subject", type=base.unicode_decoder, default='', help='subject of the invitation email (default: generic subject)') |
46 self.parser.add_argument("-b", "--body", type=base.unicode_decoder, default='', help='body of the invitation email (default: generic body)') | 46 self.parser.add_argument("-b", "--body", type=base.unicode_decoder, default='', help='body of the invitation email (default: generic body)') |
47 self.parser.add_argument("-x", "--extra", metavar=('KEY', 'VALUE'), type=base.unicode_decoder, action='append', nargs=2, default=[], help='extra data to associate with invitation/invitee') | 47 self.parser.add_argument("-x", "--extra", metavar=('KEY', 'VALUE'), type=base.unicode_decoder, action='append', nargs=2, default=[], help='extra data to associate with invitation/invitee') |
48 self.parser.add_argument("-p", "--profile", type=base.unicode_decoder, default='', help="profile doing the invitation (default: don't associate profile)") | 48 self.parser.add_argument("-p", "--profile", type=base.unicode_decoder, default='', help="profile doing the invitation (default: don't associate profile)") |
49 | 49 |