Skip to main content

Show personal bar only to authenticated users.

Project description

The personal bar is hidden for anonymous users

This package was created for the usecase that we have a Plone site where is no user interaction. So we don’t need a login possibility for all users, provided with the personal bar. But if someone is logged in it’s very usefull to have the personal bar. So the personal bar is hidden to anonymous users, but show to authenticated ones.

Tested with Plone 4.0.4.

>>> from os.path import dirname, join
>>> from plone.app.testing import (
...     TEST_USER_NAME,
...     TEST_USER_PASSWORD,
... )
>>> from plone.testing.z2 import Browser
>>> browser = Browser(layer['app'])
>>> browser.handleErrors = False
>>> portal = layer['portal']

As an anonymous user we can’t see the personal bar:

>>> browser.open(portal.absolute_url())
>>> '<a href="http://nohost/plone/@@personal-preferences">' in browser.contents
False
>>> '<a href="http://nohost/plone/dashboard">' in browser.contents
False

But after a login, it’s there:

>>> browser.addHeader('Authorization', 'Basic %s:%s' % (TEST_USER_NAME, TEST_USER_PASSWORD,))
>>> browser.open(portal.absolute_url())
>>> '<a href="http://nohost/plone/@@personal-preferences">' in browser.contents
True
>>> '<a href="http://nohost/plone/dashboard">' in browser.contents
True

Changelog

0.1.1 (2011-04-07)

  • fix repo url [j23d]

  • add tested Plone version to README.txt [j23d]

0.1 (2011-04-07)

  • Initial release [j23d]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

File details

Details for the file collective.layout.authpersonalbar-0.1.1-py2.6.egg.

File metadata

File hashes

Hashes for collective.layout.authpersonalbar-0.1.1-py2.6.egg
Algorithm Hash digest
SHA256 1229b602392233ace3b5a6b150758a70036a4d50b45d93272d2a3687fcae6882
MD5 de9a3db29d9bb3dd2885b87035b22405
BLAKE2b-256 7fa4852a4c747109854461197602fc2080141a4b64a54b98692d2129aee80305

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page