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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:browser="http://namespaces.zope.org/browser"
xmlns:i18n="http://namespaces.zope.org/i18n"
xmlns:xmlrpc="http://namespaces.zope.org/xmlrpc"
i18n_domain="launchpad">
<browser:navigation
module="lp.hardwaredb.browser.hwdb"
classes="
HWDBApplicationNavigation"/>
<browser:url
for="lp.hardwaredb.interfaces.hwdb.IHWDBApplication"
path_expression="string:+hwdb"
parent_utility="canonical.launchpad.webapp.interfaces.ILaunchpadRoot"/>
<browser:page
for="lp.hardwaredb.interfaces.hwdb.IHWDBApplication"
class="lp.hardwaredb.browser.hwdb.HWDBUploadView"
permission="zope.Public"
name="+submit"
template="../templates/hwdb-submit-hardware-data.pt"/>
<browser:url
for="lp.hardwaredb.interfaces.hwdb.IHWSystemFingerprint"
path_expression="string:+fingerprint/${fingerprint}"
parent_utility="lp.hardwaredb.interfaces.hwdb.IHWDBApplication"/>
<browser:url
for="lp.hardwaredb.interfaces.hwdb.IHWSubmission"
path_expression="string:+submission/${submission_key}"
parent_utility="lp.hardwaredb.interfaces.hwdb.IHWDBApplication"/>
<browser:defaultView
for="lp.hardwaredb.interfaces.hwdb.IHWSubmission"
name="+text"/>
<browser:page
for="lp.hardwaredb.interfaces.hwdb.IHWSubmission"
class="lp.hardwaredb.browser.hwdb.HWDBSubmissionTextView"
permission="zope.Public"
name="+text"/>
<browser:page
for="lp.registry.interfaces.person.IPerson"
permission="zope.Public"
class="lp.hardwaredb.browser.hwdb.HWDBPersonSubmissionsView"
template="../templates/person-hwdb-submissions.pt"
name="+hwdb-submissions"/>
<browser:url
for="lp.hardwaredb.interfaces.hwdb.IHWVendorID"
path_expression="string:+hwvendorid/${id}"
parent_utility="lp.hardwaredb.interfaces.hwdb.IHWDBApplication"/>
<browser:url
for="lp.hardwaredb.interfaces.hwdb.IHWDevice"
path_expression="string:+device/${id}"
parent_utility="lp.hardwaredb.interfaces.hwdb.IHWDBApplication"/>
<browser:url
for="lp.hardwaredb.interfaces.hwdb.IHWDriver"
path_expression="string:+driver/${id}"
parent_utility="lp.hardwaredb.interfaces.hwdb.IHWDBApplication"/>
<browser:url
for="lp.hardwaredb.interfaces.hwdb.IHWDriverName"
path_expression="string:+drivername/${name}"
parent_utility="lp.hardwaredb.interfaces.hwdb.IHWDBApplication"/>
<browser:url
for="lp.hardwaredb.interfaces.hwdb.IHWDriverPackageName"
path_expression="string:+driverpackagename/${package_name}"
parent_utility="lp.hardwaredb.interfaces.hwdb.IHWDBApplication"/>
<browser:url
for="lp.hardwaredb.interfaces.hwdb.IHWDeviceClass"
path_expression="string:+deviceclass/${id}"
parent_utility="lp.hardwaredb.interfaces.hwdb.IHWDBApplication"/>
<browser:url
for="lp.hardwaredb.interfaces.hwdb.IHWSubmissionDevice"
path_expression="string:+submissiondevice/${id}"
parent_utility="lp.hardwaredb.interfaces.hwdb.IHWDBApplication"/>
</configure>
|