~launchpad-pqm/launchpad/devel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Launchpad has a copyright notice in different templates in the code base.

The tour pages.

  >>> browser.open('http://launchpad.dev/')
  >>> browser.getLink('Take the tour').click()
  >>> print extract_text(find_tag_by_id(browser.contents, 'footer-navigation'))
  Next...© 2004-2012 Canonical Ltd...

The main template.

  >>> browser.open('http://launchpad.dev')
  >>> print extract_text(find_tag_by_id(browser.contents, 'footer'))
  © 2004-2012 Canonical Ltd.
  ...