1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 import gettext
23
24 from flumotion.admin.gtk.workerstep import WorkerWizardStep
25 from flumotion.common import messages
26
27 __version__ = "$Rev: 7248 $"
28 _ = gettext.gettext
29
30
37
38
40 section = _('Production')
41 icon = 'widget_doc.png'
42
46
47
48
52
53
55 section = _('Conversion')
56
60
62 return self.wizard.getStep('Encoding').getAudioPage()
63
64
66 gladeFile = 'audio-encoder-wizard.glade'
67 section = _('Conversion')
68
72
73
74
77
78
80 section = _('Consumption')
81
83 raise NotImplementedError(self)
84
86 raise NotImplementedError(self)
87
89 """Returns the http-server consumer model or None
90 if there will only a stream served.
91 @returns: the server consumer or None
92 """
93 return []
94
96 """Returns the porter model or None if there will only a stream served.
97 @returns: the porter or None
98 """
99 return []
100
101
102
104 return self.wizard.getStep('Consumption').getNext(self)
105