Skip to content

Commit

Permalink
Merge d8acedc into d86597c
Browse files Browse the repository at this point in the history
  • Loading branch information
pbauer committed Jul 6, 2017
2 parents d86597c + d8acedc commit f779df2
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 80 deletions.
8 changes: 0 additions & 8 deletions src/plone/login/browser/configure.zcml
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,6 @@
layer="plone.login.interfaces.IPloneLoginLayer"
/>

<browser:page
name="complete-profile"
for="plone.app.layout.navigation.interfaces.INavigationRoot"
class=".profile.CompleteProfileFormView"
permission="cmf.SetOwnProperties"
layer="plone.login.interfaces.IPloneLoginLayer"
/>

<browser:page
name="login"
for="plone.app.layout.navigation.interfaces.INavigationRoot"
Expand Down
49 changes: 0 additions & 49 deletions src/plone/login/browser/profile.py

This file was deleted.

2 changes: 1 addition & 1 deletion src/plone/login/browser/templates/send_email.pt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
lang="en"
metal:use-macro="context/main_template/macros/master"
i18n:domain="plone.login">
i18n:domain="plone">

<metal:main fill-slot="main">

Expand Down
22 changes: 0 additions & 22 deletions src/plone/login/interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,28 +27,6 @@ class ILogin(Interface):
)


class ICompleteProfile(Interface):
""" Temporary schema used in the complete-profile view """

first_name = schema.TextLine(
title=_(u'First Name'),
description=_(u'Please provide your first name.'),
required=True,
)

last_name = schema.TextLine(
title=_(u'Last Name'),
description=_(u'Please provide your last name.'),
required=True,
)

bio = schema.Text(
title=_(u'Bio'),
description=_(u'Please provide a bio of yourself.'),
required=False,
)


class ILoginForm(IWrappedForm):
""" Login form marker interface """

Expand Down

0 comments on commit f779df2

Please sign in to comment.