adding all of botlist, initial add
[botlist.git] / openbotlist / WEB-INF / jsps / help / help.rb
blob675e695e98de6c63922b4eb516133a4b9cd02710
1 ##\r
2 ## Berlin Brown\r
3 ## 7/24/2007\r
4 ##\r
5 \r
6 class ViewContactController\r
7   \r
8   def initialize(controller)\r
9     @controller = controller\r
10   end    \r
11   \r
12   # Generate the view\r
13   def getModel(request)    \r
14     # Audit the request\r
15     @controller.auditLogPage(request, "help.html")\r
16     return { }    \r
17   end\r
18   \r
19   #\r
20   # Processed when the form is submitted, \r
21   # see the controller 'processFormSubmission()' method\r
22   def onSubmit(request, response, form, errors)      \r
23     return form\r
24   end\r
25 end\r
27 ViewContactController.new($controller)\r
29 ## End of Script ##\r