~ubuntu-branches/ubuntu/hardy/moin/hardy-updates

« back to all changes in this revision

Viewing changes to MoinMoin/macro/PageSize.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-12-06 17:44:41 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20071206174441-20bxkrbqdglgh4l7
Tags: 1.5.8-5ubuntu1
* Merge with Debian; remaining changes:
  - Suggest python-xml (needed for DocBook rendering). LP: #31728.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
Dependencies = ["pages"]
10
10
 
11
11
def execute(macro, args):
 
12
    if macro.request.isSpiderAgent: # reduce bot cpu usage
 
13
        return ''
 
14
 
12
15
    # get list of pages and their objects
13
16
    pages = macro.request.rootpage.getPageDict()
14
17