delete

delete( key ) Instance Public methods Deletes value from database associated with key. Returns value or nil.

configure

configure(slot, value=TkComm::None) Instance Public methods

running?

running?() Instance Public methods

packqw

packqw(qw) Instance Public methods

status=

status=(status) Instance Public methods Sets the HTTP status code.

accept_heading

accept_heading(heading) Instance Public methods Adds heading to the output

__tk_call

__tk_call(*args) Instance Public methods Alias for: tk_call

baseName

baseName() Instance Public methods BSTR baseName the base name of the node (nodename with the prefix stripped off)

text_area

text_area(object_name, method, options = {}) Instance Public methods Returns a textarea opening and closing tag set tailored for accessing a specified attribute (identified by method) on an object assigned to the template (identified by object). Additional options on the input tag can be passed as a hash with options. Examples text_area(:post, :body, cols: 20, rows: 40) # => <textarea cols="20" rows="40" id="post_body" name="post[body]"> # #{@post.body} # </text

fnmatch

File.fnmatch( pattern, path, [flags] ) â (true or false)File.fnmatch?( pattern, path, [flags] ) â (true or false) Class Public methods Returns true if path matches against pattern The pattern is not a regular expression; instead it follows rules similar to shell filename globbing. It may contain the following metacharacters: * Matches any file. Can be restricted by other values in the glob. * will match all files; c* will match all files beginning with c; *c will match all files