1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
Answers Default Pages
=====================
The answers.launchpad.net domain is used for the Answer Tracker
application. When visiting objects on that virtual host, the default
selected facet is the Answers facet.
Product
-------
>>> anon_browser.open('http://answers.launchpad.dev/firefox')
>>> print anon_browser.title
Questions : Mozilla Firefox
Distribution
------------
>>> anon_browser.open('http://answers.launchpad.dev/ubuntu')
>>> print anon_browser.title
Questions : Ubuntu
Distribution Source Package
---------------------------
>>> anon_browser.open(
... 'http://answers.launchpad.dev/ubuntu/+source/mozilla-firefox')
>>> print anon_browser.title
Questions : ...mozilla-firefox... package : Ubuntu
ProjectGroup
------------
>>> anon_browser.open(
... 'http://answers.launchpad.dev/mozilla')
>>> print anon_browser.title
Questions : The Mozilla Project
Person
------
>>> anon_browser.open('http://answers.launchpad.dev/~name16')
>>> print anon_browser.title
Questions : Foo Bar
|