=============
 Master data
=============

The importer shows up in the master data section of the addressbook. But is
not visible for all users.


Manager
=======

A manager can see the importer in the master data:

>>> manager = get_browser('mgr')
>>> manager.open('http://localhost/ab')
>>> manager.getLink('Master data').click()
>>> print manager.contents
<!DOCTYPE ...
    <li>
      <a href="http://localhost/ab/++attribute++importer"><span>Import data</span></a>
</li>...

Editor
======

An editor cannot see the importer in the master data:

>>> editor = get_browser('editor')
>>> editor.open('http://localhost/ab')
>>> editor.getLink('Master data').click()
>>> '++attribute++importer' in editor.contents
False


Visitor
=======

A visitor cannot see the importer in the master data:

>>> visitor = get_browser('visitor')
>>> visitor.open('http://localhost/ab')
>>> visitor.getLink('Master data').click()
>>> '++attribute++importer' in editor.contents
False
