Beispiel #1
0
    def GET(self):
        '''Returns a string describing the test queries used in testing a data model'''

        # Get the input data from the HTTP header
        model = web.input().model

        # Return description
        return describeQueries(model)
Beispiel #2
0
    def GET(self):
        '''Returns a string describing the test queries used in testing a data model'''
        
        # Get the input data from the HTTP header
        model = web.input().model

        # Return description
        return describeQueries(model)
 def GET(self):
     '''Returns a string describing the queries used in testing a DM'''
     model = web.input().model
     return describeQueries(model)
Beispiel #4
0
 def GET(self):
     '''Returns a string describing the queries used in testing a DM'''
     model = web.input().model
     return describeQueries(model)