This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% def obj=tour as grails.converters.JSON; println obj.toString(true).replace("\n","<br>").replace(" "," ") %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Renders the body if none of the specified roles are granted to the user. Roles are | |
* specified in the 'roles' attribute which is a comma-delimited string. | |
* | |
* @attr roles REQUIRED the role name(s) | |
*/ | |
def ifNotGranted = { attrs, body -> | |
String roles = assertAttribute('roles', attrs, 'ifNotGranted') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Renders the body if none of the specified roles are granted to the user. Roles are | |
* specified in the 'roles' attribute which is a comma-delimited string. | |
* | |
* @attr roles REQUIRED the role name(s) | |
*/ | |
def ifNotGranted = { attrs, body -> | |
String roles = assertAttribute('roles', attrs, 'ifNotGranted') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'solid_assert' # http://jorgemanrubia.net/2011/09/19/solid_assert-a-simple-ruby-assertion-utility/ | |
require 'grok-pure' | |
SolidAssert.enable_assertions | |
# Grok Docs: http://rubydoc.info/gems/jls-grok/Grok | |
g = Grok.new | |
# Test SU Patterns. | |
g.add_patterns_from_file("E:/downloads/logstash/SUPatterns/SU") |
NewerOlder