Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1#!/usr/local/bin/python 

2# encoding: utf-8 

3""" 

4*The data model module for the `transients_element_history_post` resource* 

5 

6:Author: 

7 David Young 

8""" 

9from builtins import object 

10import sys 

11import os 

12import khufu 

13 

14class models_transients_element_history_post(object): 

15 """ 

16 The worker class for the models_transients_element_history_post module 

17 

18 **Key Arguments** 

19 

20 - ``log`` -- logger 

21 - ``request`` -- the pyramid request 

22 - ``elementId`` -- the specific element id requests (or False) 

23 - ``search`` -- is this a search request (boolean) 

24  

25 """ 

26 

27 def __init__( 

28 self, 

29 log, 

30 request, 

31 elementId=False, 

32 search=False 

33 ): 

34 self.log = log 

35 self.request = request 

36 self.elementId = elementId 

37 self.search = search 

38 self.qs = dict(request.params) # the query string 

39 # the query string defaults 

40 self.defaultQs = {} 

41 # xt-self-arg-tmpx 

42 

43 log.debug( 

44 "instansiating a new 'models_transients_element_history_post' object") 

45 

46 self._set_default_parameters() 

47 

48 return None 

49 

50 def close(self): 

51 del self 

52 return None 

53 

54 def post(self): 

55 """execute the post method on the models_transients_element_history_post object 

56 

57 **Return** 

58 

59 - ``responseContent`` -- the reponse to send to the browser 

60  

61 """ 

62 self.log.debug('starting the ``post`` method') 

63 

64 elementId = self.elementId 

65 

66 responseContent = "Response from <code>" + __name__ + "</code><BR><BR>" 

67 if elementId: 

68 responseContent = "%(responseContent)sThe element selected was </code>%(elementId)s</code>" % locals( 

69 ) 

70 else: 

71 responseContent = "%(responseContent)sResource Context selected (no element)" % locals( 

72 ) 

73 

74 self.log.debug('completed the ``post`` method') 

75 return responseContent 

76 

77 def _set_default_parameters( 

78 self): 

79 """ set default parameters 

80 """ 

81 self.log.debug('starting the ``_set_default_parameters`` method') 

82 

83 for k, v in list(self.defaultQs.items()): 

84 if k not in self.qs: 

85 self.qs[k] = v 

86 

87 self.log.debug('completed the ``_set_default_parameters`` method') 

88 return None 

89 

90 # method-override-tmpx