~ubuntu-branches/ubuntu/natty/moin/natty-updates

« back to all changes in this revision

Viewing changes to MoinMoin/theme/classic.py

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-06-22 21:17:13 UTC
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20080622211713-inlv5k4eifxckelr
ImportĀ upstreamĀ versionĀ 1.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
"""
14
14
 
15
15
from MoinMoin import caching
16
 
from MoinMoin.action import get_available_actions
17
16
from MoinMoin.theme import ThemeBase
18
17
 
19
18
 
184
183
        rev = d['rev']
185
184
        html = []
186
185
        page = d['page']
187
 
        available = get_available_actions(request.cfg, page, request.user)
 
186
        available = request.getAvailableActions(page)
188
187
        if available:
189
188
            available = list(available)
190
189
            available.sort()