~ubuntu-branches/ubuntu/hardy/libapache2-mod-python/hardy

« back to all changes in this revision

Viewing changes to test/httpdconf.py

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Ożarowski
  • Date: 2007-04-12 20:52:05 UTC
  • mfrom: (1.2.4 upstream) (1.1.2 etch)
  • Revision ID: james.westby@ubuntu.com-20070412205205-j4qlsw3o4tl615iq
Tags: 3.3.1-1
* New upstream release
* Remove configure and mod_python.h files in clean rule to make the diff.gz
  file smaller
* Current Python version in libapache2-mod-pythonX.Y package name (Provides:
  field) filled in automatically.
* Added XS-Vcs-Browser field

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 # implied.  See the License for the specific language governing
14
14
 # permissions and limitations under the License.
15
15
 #
16
 
 # $Id: httpdconf.py 383365 2006-03-05 18:40:22Z jgallacher $
 
16
 # $Id: httpdconf.py 394455 2006-04-16 10:49:39Z grahamd $
17
17
 #
18
18
 # Config maker, a la HTMLGen. This could grow into something useful.
19
19
 #
83
83
    def __init__(self, val):
84
84
        Directive.__init__(self, self.__class__.__name__, val)
85
85
 
 
86
class AddType(Directive):
 
87
    def __init__(self, val):
 
88
        Directive.__init__(self, self.__class__.__name__, val)
 
89
 
86
90
class AuthBasicAuthoritative(Directive):
87
91
    # New in Apache 2.2
88
92
    def __init__(self, val):
121
125
    def __init__(self, val):
122
126
        Directive.__init__(self, self.__class__.__name__, val)
123
127
 
 
128
class Files(ContainerTag):
 
129
    def __init__(self, dir, *args):
 
130
        ContainerTag.__init__(self, self.__class__.__name__, dir, args)
 
131
 
124
132
class IfModule(ContainerTag):
125
133
    def __init__(self, dir, *args):
126
134
        ContainerTag.__init__(self, self.__class__.__name__, dir, args)
181
189
    def __init__(self, val):
182
190
        Directive.__init__(self, self.__class__.__name__, val)
183
191
 
 
192
class Options(Directive):
 
193
    def __init__(self, val):
 
194
        Directive.__init__(self, self.__class__.__name__, val)
 
195
 
184
196
class PidFile(Directive):
185
197
    def __init__(self, val):
186
198
        Directive.__init__(self, self.__class__.__name__, val)
189
201
    def __init__(self, val):
190
202
        Directive.__init__(self, self.__class__.__name__, val)
191
203
 
 
204
class PythonAuthzHandler(Directive):
 
205
    def __init__(self, val):
 
206
        Directive.__init__(self, self.__class__.__name__, val)
 
207
 
192
208
class PythonConnectionHandler(Directive):
193
209
    def __init__(self, val):
194
210
        Directive.__init__(self, self.__class__.__name__, val)
213
229
    def __init__(self, val):
214
230
        Directive.__init__(self, self.__class__.__name__, val)
215
231
 
 
232
class PythonFixupHandler(Directive):
 
233
    def __init__(self, val):
 
234
        Directive.__init__(self, self.__class__.__name__, val)
 
235
 
216
236
class PythonImport(Directive):
217
237
    def __init__(self, val):
218
238
        Directive.__init__(self, self.__class__.__name__, val)