repo stringlengths 5 58 | path stringlengths 9 168 | func_name stringlengths 9 130 | original_string stringlengths 66 10.5k | language stringclasses 1
value | code stringlengths 66 10.5k | code_tokens list | docstring stringlengths 8 16k | docstring_tokens list | sha stringlengths 40 40 | url stringlengths 94 266 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
mare-imbrium/canis | lib/canis/core/widgets/applicationheader.rb | Canis.ApplicationHeader.print_top_right | def print_top_right(htext)
hlen = htext.length
len = @window.getmaxx # width was not changing when resize happens
len = Ncurses.COLS-0 if len == 0 || len > Ncurses.COLS
#$log.debug " def print_top_right(#{htext}) #{len} #{Ncurses.COLS} "
@form.window.printstring 0, len-hlen, htext, @color_... | ruby | def print_top_right(htext)
hlen = htext.length
len = @window.getmaxx # width was not changing when resize happens
len = Ncurses.COLS-0 if len == 0 || len > Ncurses.COLS
#$log.debug " def print_top_right(#{htext}) #{len} #{Ncurses.COLS} "
@form.window.printstring 0, len-hlen, htext, @color_... | [
"def",
"print_top_right",
"(",
"htext",
")",
"hlen",
"=",
"htext",
".",
"length",
"len",
"=",
"@window",
".",
"getmaxx",
"len",
"=",
"Ncurses",
".",
"COLS",
"-",
"0",
"if",
"len",
"==",
"0",
"||",
"len",
">",
"Ncurses",
".",
"COLS",
"@form",
".",
"... | internal method to print text_right | [
"internal",
"method",
"to",
"print",
"text_right"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/applicationheader.rb#L114-L120 | train |
kristianmandrup/cream | lib/cream/helper/role.rb | Cream::Helper.Role.owner? | def owner? obj, relation=nil
if relation
return true if user_relation?(obj, relation)
end
[:user, :owner, :author].each do |relation|
return true if user_relation?(obj, relation)
end
false
end | ruby | def owner? obj, relation=nil
if relation
return true if user_relation?(obj, relation)
end
[:user, :owner, :author].each do |relation|
return true if user_relation?(obj, relation)
end
false
end | [
"def",
"owner?",
"obj",
",",
"relation",
"=",
"nil",
"if",
"relation",
"return",
"true",
"if",
"user_relation?",
"(",
"obj",
",",
"relation",
")",
"end",
"[",
":user",
",",
":owner",
",",
":author",
"]",
".",
"each",
"do",
"|",
"relation",
"|",
"return... | returns true if the current user owns the object
tries default 'owner' relations if none given as an argument | [
"returns",
"true",
"if",
"the",
"current",
"user",
"owns",
"the",
"object",
"tries",
"default",
"owner",
"relations",
"if",
"none",
"given",
"as",
"an",
"argument"
] | 6edbdc8796b4a942e11d1054649b2e058c90c9d8 | https://github.com/kristianmandrup/cream/blob/6edbdc8796b4a942e11d1054649b2e058c90c9d8/lib/cream/helper/role.rb#L71-L79 | train |
avvo/delsolr | lib/delsolr/client.rb | DelSolr.Client.prepare_update_xml | def prepare_update_xml(options = {})
r = ["<add#{options.to_xml_attribute_string}>\n"]
# copy and clear pending docs
working_docs, @pending_documents = @pending_documents, nil
working_docs.each { |doc| r << doc.xml }
r << "\n</add>\n"
r.join # not sure, but I think Array#join is fast... | ruby | def prepare_update_xml(options = {})
r = ["<add#{options.to_xml_attribute_string}>\n"]
# copy and clear pending docs
working_docs, @pending_documents = @pending_documents, nil
working_docs.each { |doc| r << doc.xml }
r << "\n</add>\n"
r.join # not sure, but I think Array#join is fast... | [
"def",
"prepare_update_xml",
"(",
"options",
"=",
"{",
"}",
")",
"r",
"=",
"[",
"\"<add#{options.to_xml_attribute_string}>\\n\"",
"]",
"working_docs",
",",
"@pending_documents",
"=",
"@pending_documents",
",",
"nil",
"working_docs",
".",
"each",
"{",
"|",
"doc",
"... | returns the update xml buffer | [
"returns",
"the",
"update",
"xml",
"buffer"
] | 30debacab9e7bf3c6f1907563286c29fb61441b2 | https://github.com/avvo/delsolr/blob/30debacab9e7bf3c6f1907563286c29fb61441b2/lib/delsolr/client.rb#L291-L298 | train |
mare-imbrium/canis | lib/canis/core/include/appmethods.rb | Canis.Utils.suspend | def suspend
_suspend(false) do
system("tput cup 26 0")
system("tput ed")
system("echo Enter C-d to return to application")
system (ENV['PS1']='\s-\v\$ ') if ENV['SHELL']== '/bin/bash'
system(ENV['SHELL']);
end
end | ruby | def suspend
_suspend(false) do
system("tput cup 26 0")
system("tput ed")
system("echo Enter C-d to return to application")
system (ENV['PS1']='\s-\v\$ ') if ENV['SHELL']== '/bin/bash'
system(ENV['SHELL']);
end
end | [
"def",
"suspend",
"_suspend",
"(",
"false",
")",
"do",
"system",
"(",
"\"tput cup 26 0\"",
")",
"system",
"(",
"\"tput ed\"",
")",
"system",
"(",
"\"echo Enter C-d to return to application\"",
")",
"system",
"(",
"ENV",
"[",
"'PS1'",
"]",
"=",
"'\\s-\\v\\$ '",
"... | suspends current program and puts user on unix prompt | [
"suspends",
"current",
"program",
"and",
"puts",
"user",
"on",
"unix",
"prompt"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/appmethods.rb#L36-L44 | train |
mare-imbrium/canis | lib/canis/core/include/appmethods.rb | Canis.Utils.shell_output | def shell_output
$shell_history ||= []
cmd = get_string("Enter shell command:", :maxlen => 50) do |f|
require 'canis/core/include/rhistory'
f.extend(FieldHistory)
f.history($shell_history)
end
if cmd && !cmd.empty?
run_command cmd
$shell_history.push(cmd) ... | ruby | def shell_output
$shell_history ||= []
cmd = get_string("Enter shell command:", :maxlen => 50) do |f|
require 'canis/core/include/rhistory'
f.extend(FieldHistory)
f.history($shell_history)
end
if cmd && !cmd.empty?
run_command cmd
$shell_history.push(cmd) ... | [
"def",
"shell_output",
"$shell_history",
"||=",
"[",
"]",
"cmd",
"=",
"get_string",
"(",
"\"Enter shell command:\"",
",",
":maxlen",
"=>",
"50",
")",
"do",
"|",
"f",
"|",
"require",
"'canis/core/include/rhistory'",
"f",
".",
"extend",
"(",
"FieldHistory",
")",
... | prompts user for unix command and displays output in viewer | [
"prompts",
"user",
"for",
"unix",
"command",
"and",
"displays",
"output",
"in",
"viewer"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/appmethods.rb#L49-L60 | train |
mare-imbrium/canis | lib/canis/core/include/appmethods.rb | Canis.PrefixCommand.define_key | def define_key _keycode, *args, &blk
_symbol = @symbol
h = $rb_prefix_map[_symbol]
raise ArgumentError, "No such keymap #{_symbol} defined. Use define_prefix_command." unless h
_keycode = _keycode[0].getbyte(0) if _keycode[0].class == String
arg = args.shift
if arg.is_a? String
... | ruby | def define_key _keycode, *args, &blk
_symbol = @symbol
h = $rb_prefix_map[_symbol]
raise ArgumentError, "No such keymap #{_symbol} defined. Use define_prefix_command." unless h
_keycode = _keycode[0].getbyte(0) if _keycode[0].class == String
arg = args.shift
if arg.is_a? String
... | [
"def",
"define_key",
"_keycode",
",",
"*",
"args",
",",
"&",
"blk",
"_symbol",
"=",
"@symbol",
"h",
"=",
"$rb_prefix_map",
"[",
"_symbol",
"]",
"raise",
"ArgumentError",
",",
"\"No such keymap #{_symbol} defined. Use define_prefix_command.\"",
"unless",
"h",
"_keycode... | define a key within a prefix key map such as C-x
Now that i am moving this from global, how will describe bindings get hold of the bindings
and descriptions | [
"define",
"a",
"key",
"within",
"a",
"prefix",
"key",
"map",
"such",
"as",
"C",
"-",
"x",
"Now",
"that",
"i",
"am",
"moving",
"this",
"from",
"global",
"how",
"will",
"describe",
"bindings",
"get",
"hold",
"of",
"the",
"bindings",
"and",
"descriptions"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/appmethods.rb#L168-L191 | train |
mare-imbrium/canis | lib/canis/core/widgets/tabular.rb | Canis.Tabular.column_width | def column_width colindex, width
@cw[colindex] ||= width
if @chash[colindex].nil?
@chash[colindex] = ColumnInfo.new("", width)
else
@chash[colindex].w = width
end
@chash
end | ruby | def column_width colindex, width
@cw[colindex] ||= width
if @chash[colindex].nil?
@chash[colindex] = ColumnInfo.new("", width)
else
@chash[colindex].w = width
end
@chash
end | [
"def",
"column_width",
"colindex",
",",
"width",
"@cw",
"[",
"colindex",
"]",
"||=",
"width",
"if",
"@chash",
"[",
"colindex",
"]",
".",
"nil?",
"@chash",
"[",
"colindex",
"]",
"=",
"ColumnInfo",
".",
"new",
"(",
"\"\"",
",",
"width",
")",
"else",
"@ch... | set width of a given column
@param [Number] column offset, starting 0
@param [Number] width | [
"set",
"width",
"of",
"a",
"given",
"column"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/tabular.rb#L105-L113 | train |
mare-imbrium/canis | lib/canis/core/widgets/tabular.rb | Canis.Tabular.render | def render
buffer = []
_guess_col_widths
rows = @list.size.to_s.length
@rows = rows
_prepare_format
str = ""
if @numbering
str = " "*(rows+1)+@y
end
str << @fmstr % @columns
buffer << str
#puts "-" * str.length
buffer << separator
... | ruby | def render
buffer = []
_guess_col_widths
rows = @list.size.to_s.length
@rows = rows
_prepare_format
str = ""
if @numbering
str = " "*(rows+1)+@y
end
str << @fmstr % @columns
buffer << str
#puts "-" * str.length
buffer << separator
... | [
"def",
"render",
"buffer",
"=",
"[",
"]",
"_guess_col_widths",
"rows",
"=",
"@list",
".",
"size",
".",
"to_s",
".",
"length",
"@rows",
"=",
"rows",
"_prepare_format",
"str",
"=",
"\"\"",
"if",
"@numbering",
"str",
"=",
"\" \"",
"*",
"(",
"rows",
"+",
"... | Now returns an array with formatted data
@return [Array<String>] array of formatted data | [
"Now",
"returns",
"an",
"array",
"with",
"formatted",
"data"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/tabular.rb#L132-L160 | train |
Oneflare/abn_search | lib/abn/client.rb | Abn.Client.search_by_acn | def search_by_acn(acn)
self.errors << "No ACN provided." && return if acn.nil?
self.errors << "No GUID provided. Please obtain one at - http://www.abr.business.gov.au/Webservices.aspx" && return if self.guid.nil?
begin
client = Savon.client(self.client_options)
response = client.call(... | ruby | def search_by_acn(acn)
self.errors << "No ACN provided." && return if acn.nil?
self.errors << "No GUID provided. Please obtain one at - http://www.abr.business.gov.au/Webservices.aspx" && return if self.guid.nil?
begin
client = Savon.client(self.client_options)
response = client.call(... | [
"def",
"search_by_acn",
"(",
"acn",
")",
"self",
".",
"errors",
"<<",
"\"No ACN provided.\"",
"&&",
"return",
"if",
"acn",
".",
"nil?",
"self",
".",
"errors",
"<<",
"\"No GUID provided. Please obtain one at - http://www.abr.business.gov.au/Webservices.aspx\"",
"&&",
"retu... | Setup a new instance of the ABN search class.
@param [String] guid - the ABR GUID for Web Services access
@param [Hash] options - options detailed below
@option options [String] :proxy Proxy URL string if required (Example: http://user:pass@host.example.com:443)
@return [ABNSearch]
Performs an ABR search for the ... | [
"Setup",
"a",
"new",
"instance",
"of",
"the",
"ABN",
"search",
"class",
"."
] | 596d388b45e7c95d5b8cce92b9705fc27b63e47d | https://github.com/Oneflare/abn_search/blob/596d388b45e7c95d5b8cce92b9705fc27b63e47d/lib/abn/client.rb#L31-L43 | train |
mare-imbrium/canis | lib/canis/core/include/vieditable.rb | Canis.ViEditable.vieditable_init_listbox | def vieditable_init_listbox
$log.debug " inside vieditable_init_listbox "
@editable = true
bind_key( ?C, :edit_line)
bind_key( ?o) { insert_line(@current_index+1) }
bind_key( ?O) { insert_line(@current_index) }
bind_key( [?d, ?d] , :delete_line )
bind_key( ?\C-_ ) { @undo_ha... | ruby | def vieditable_init_listbox
$log.debug " inside vieditable_init_listbox "
@editable = true
bind_key( ?C, :edit_line)
bind_key( ?o) { insert_line(@current_index+1) }
bind_key( ?O) { insert_line(@current_index) }
bind_key( [?d, ?d] , :delete_line )
bind_key( ?\C-_ ) { @undo_ha... | [
"def",
"vieditable_init_listbox",
"$log",
".",
"debug",
"\" inside vieditable_init_listbox \"",
"@editable",
"=",
"true",
"bind_key",
"(",
"?C",
",",
":edit_line",
")",
"bind_key",
"(",
"?o",
")",
"{",
"insert_line",
"(",
"@current_index",
"+",
"1",
")",
"}",
"b... | Separate mappings for listboxes.
Some methods don;'t make sense for listboxes and are crashing
since not present for them. f was being overwritten, too.
Sorry for duplication, need to clean this somehow. | [
"Separate",
"mappings",
"for",
"listboxes",
".",
"Some",
"methods",
"don",
";",
"t",
"make",
"sense",
"for",
"listboxes",
"and",
"are",
"crashing",
"since",
"not",
"present",
"for",
"them",
".",
"f",
"was",
"being",
"overwritten",
"too",
".",
"Sorry",
"for... | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/vieditable.rb#L50-L79 | train |
mare-imbrium/canis | lib/canis/core/include/vieditable.rb | Canis.ViEditable.vieditable_init_tabular | def vieditable_init_tabular
$log.debug " inside vieditable_init tabular"
@editable = true
#bind_key( ?C, :edit_line)
#bind_key( ?o, :insert_line)
#bind_key( ?O) { insert_line(@current_index-1) }
#bind_key( ?o) { insert_line(@current_index+1) }
#bind_key( ?O) { insert_line(@cu... | ruby | def vieditable_init_tabular
$log.debug " inside vieditable_init tabular"
@editable = true
#bind_key( ?C, :edit_line)
#bind_key( ?o, :insert_line)
#bind_key( ?O) { insert_line(@current_index-1) }
#bind_key( ?o) { insert_line(@current_index+1) }
#bind_key( ?O) { insert_line(@cu... | [
"def",
"vieditable_init_tabular",
"$log",
".",
"debug",
"\" inside vieditable_init tabular\"",
"@editable",
"=",
"true",
"bind_key",
"(",
"[",
"?d",
",",
"?d",
"]",
",",
":delete_line",
")",
"bind_key",
"(",
"[",
"?y",
",",
"?y",
"]",
",",
":kill_ring_save",
"... | currently only adding delete_line and some yank pop functions
These will all give wrong results in table due to _header_offset | [
"currently",
"only",
"adding",
"delete_line",
"and",
"some",
"yank",
"pop",
"functions",
"These",
"will",
"all",
"give",
"wrong",
"results",
"in",
"table",
"due",
"to",
"_header_offset"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/vieditable.rb#L83-L101 | train |
mare-imbrium/canis | lib/canis/core/include/vieditable.rb | Canis.ViEditable.edit_line | def edit_line lineno=@current_index
line = self[lineno]
prompt = "Edit: "
maxlen = 80
config={};
oldline = line.dup
config[:default] = line
ret, str = rb_getstr(@form.window, $error_message_row, $error_message_col, prompt, maxlen, config)
$log.debug " rb_getstr returned... | ruby | def edit_line lineno=@current_index
line = self[lineno]
prompt = "Edit: "
maxlen = 80
config={};
oldline = line.dup
config[:default] = line
ret, str = rb_getstr(@form.window, $error_message_row, $error_message_col, prompt, maxlen, config)
$log.debug " rb_getstr returned... | [
"def",
"edit_line",
"lineno",
"=",
"@current_index",
"line",
"=",
"self",
"[",
"lineno",
"]",
"prompt",
"=",
"\"Edit: \"",
"maxlen",
"=",
"80",
"config",
"=",
"{",
"}",
";",
"oldline",
"=",
"line",
".",
"dup",
"config",
"[",
":default",
"]",
"=",
"line... | edit current or given line | [
"edit",
"current",
"or",
"given",
"line"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/vieditable.rb#L105-L120 | train |
mare-imbrium/canis | lib/canis/core/include/vieditable.rb | Canis.ViEditable.edit_string | def edit_string string, prompt="Edit: ", maxlen=80
config={};
config[:default] = string
ret, str = rb_getstr(@form.window, $error_message_row, $error_message_col, prompt, maxlen, config)
#return str if ret == 0
#return ""
end | ruby | def edit_string string, prompt="Edit: ", maxlen=80
config={};
config[:default] = string
ret, str = rb_getstr(@form.window, $error_message_row, $error_message_col, prompt, maxlen, config)
#return str if ret == 0
#return ""
end | [
"def",
"edit_string",
"string",
",",
"prompt",
"=",
"\"Edit: \"",
",",
"maxlen",
"=",
"80",
"config",
"=",
"{",
"}",
";",
"config",
"[",
":default",
"]",
"=",
"string",
"ret",
",",
"str",
"=",
"rb_getstr",
"(",
"@form",
".",
"window",
",",
"$error_mess... | common method to edit given string
@param [String] string to edit/modify
@param [String] prompt to display before string
@param [int] max length of input
@return [0, -1] return value 0 if okay, -1 if error | [
"common",
"method",
"to",
"edit",
"given",
"string"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/vieditable.rb#L150-L156 | train |
mare-imbrium/canis | lib/canis/core/include/vieditable.rb | Canis.ViEditable.input_string | def input_string prompt="Insert: ", maxlen=80
#ret, str = rb_getstr(@form.window, $error_message_row, $error_message_col, prompt, maxlen, config)
ret, str = rb_getstr(@form.window, $error_message_row, $error_message_col, prompt, maxlen, config)
#return str if ret == 0
#return ""
end | ruby | def input_string prompt="Insert: ", maxlen=80
#ret, str = rb_getstr(@form.window, $error_message_row, $error_message_col, prompt, maxlen, config)
ret, str = rb_getstr(@form.window, $error_message_row, $error_message_col, prompt, maxlen, config)
#return str if ret == 0
#return ""
end | [
"def",
"input_string",
"prompt",
"=",
"\"Insert: \"",
",",
"maxlen",
"=",
"80",
"ret",
",",
"str",
"=",
"rb_getstr",
"(",
"@form",
".",
"window",
",",
"$error_message_row",
",",
"$error_message_col",
",",
"prompt",
",",
"maxlen",
",",
"config",
")",
"end"
] | common method to input a blank string
@param [String] prompt to display before string
@param [int] max length of input
@return [0, -1] return value 0 if okay, -1 if error | [
"common",
"method",
"to",
"input",
"a",
"blank",
"string"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/vieditable.rb#L162-L167 | train |
mare-imbrium/canis | lib/canis/core/widgets/textpad.rb | Canis.TextPad.fire_row_changed | def fire_row_changed ix
return if ix >= @list.length
clear_row @pad, ix
# allow documents to reparse that line
fire_handler :ROW_CHANGED, ix
_arr = _getarray
render @pad, ix, _arr[ix]
end | ruby | def fire_row_changed ix
return if ix >= @list.length
clear_row @pad, ix
# allow documents to reparse that line
fire_handler :ROW_CHANGED, ix
_arr = _getarray
render @pad, ix, _arr[ix]
end | [
"def",
"fire_row_changed",
"ix",
"return",
"if",
"ix",
">=",
"@list",
".",
"length",
"clear_row",
"@pad",
",",
"ix",
"fire_handler",
":ROW_CHANGED",
",",
"ix",
"_arr",
"=",
"_getarray",
"render",
"@pad",
",",
"ix",
",",
"_arr",
"[",
"ix",
"]",
"end"
] | repaint only one row since content of that row has changed.
No recreate of pad is done. | [
"repaint",
"only",
"one",
"row",
"since",
"content",
"of",
"that",
"row",
"has",
"changed",
".",
"No",
"recreate",
"of",
"pad",
"is",
"done",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/textpad.rb#L413-L421 | train |
mare-imbrium/canis | lib/canis/core/widgets/textpad.rb | Canis.TextPad.forward_regex | def forward_regex regex
if regex.is_a? Symbol
regex = @text_patterns[regex]
raise "Pattern specified #{regex} does not exist in text_patterns " unless regex
end
$multiplier = 1 if !$multiplier || $multiplier == 0
line = @current_index
_arr = _getarray
buff = _arr[line... | ruby | def forward_regex regex
if regex.is_a? Symbol
regex = @text_patterns[regex]
raise "Pattern specified #{regex} does not exist in text_patterns " unless regex
end
$multiplier = 1 if !$multiplier || $multiplier == 0
line = @current_index
_arr = _getarray
buff = _arr[line... | [
"def",
"forward_regex",
"regex",
"if",
"regex",
".",
"is_a?",
"Symbol",
"regex",
"=",
"@text_patterns",
"[",
"regex",
"]",
"raise",
"\"Pattern specified #{regex} does not exist in text_patterns \"",
"unless",
"regex",
"end",
"$multiplier",
"=",
"1",
"if",
"!",
"$multi... | jump to the next occurence of given regex in the current line.
It only jumps to next line after exhausting current.
@param [Regexp] passed to String.index | [
"jump",
"to",
"the",
"next",
"occurence",
"of",
"given",
"regex",
"in",
"the",
"current",
"line",
".",
"It",
"only",
"jumps",
"to",
"next",
"line",
"after",
"exhausting",
"current",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/textpad.rb#L937-L968 | train |
mare-imbrium/canis | lib/canis/core/widgets/textpad.rb | Canis.TextPad._handle_key | def _handle_key ch
begin
ret = process_key ch, self
$multiplier = 0
bounds_check
rescue => err
$log.error " TEXTPAD ERROR _handle_key #{err} "
$log.debug(err.backtrace.join("\n"))
alert "#{err}"
#textdialog ["Error in TextPad: #{err} ", *err.backtrace]... | ruby | def _handle_key ch
begin
ret = process_key ch, self
$multiplier = 0
bounds_check
rescue => err
$log.error " TEXTPAD ERROR _handle_key #{err} "
$log.debug(err.backtrace.join("\n"))
alert "#{err}"
#textdialog ["Error in TextPad: #{err} ", *err.backtrace]... | [
"def",
"_handle_key",
"ch",
"begin",
"ret",
"=",
"process_key",
"ch",
",",
"self",
"$multiplier",
"=",
"0",
"bounds_check",
"rescue",
"=>",
"err",
"$log",
".",
"error",
"\" TEXTPAD ERROR _handle_key #{err} \"",
"$log",
".",
"debug",
"(",
"err",
".",
"backtrace",... | this is a barebones handler to be used only if an overriding key handler
wishes to fall back to default processing after it has handled some keys.
The complete version is in Defaultkeyhandler.
BUT the key will be executed again. | [
"this",
"is",
"a",
"barebones",
"handler",
"to",
"be",
"used",
"only",
"if",
"an",
"overriding",
"key",
"handler",
"wishes",
"to",
"fall",
"back",
"to",
"default",
"processing",
"after",
"it",
"has",
"handled",
"some",
"keys",
".",
"The",
"complete",
"vers... | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/textpad.rb#L1101-L1116 | train |
mare-imbrium/canis | lib/canis/core/widgets/textpad.rb | Canis.TextPad.on_enter_row | def on_enter_row arow
return nil if @list.nil? || @list.size == 0
@repaint_footer_required = true
## can this be done once and stored, and one instance used since a lot of traversal will be done
require 'canis/core/include/ractionevent'
aev = TextActionEvent.new self, :ENTER_ROW, current... | ruby | def on_enter_row arow
return nil if @list.nil? || @list.size == 0
@repaint_footer_required = true
## can this be done once and stored, and one instance used since a lot of traversal will be done
require 'canis/core/include/ractionevent'
aev = TextActionEvent.new self, :ENTER_ROW, current... | [
"def",
"on_enter_row",
"arow",
"return",
"nil",
"if",
"@list",
".",
"nil?",
"||",
"@list",
".",
"size",
"==",
"0",
"@repaint_footer_required",
"=",
"true",
"require",
"'canis/core/include/ractionevent'",
"aev",
"=",
"TextActionEvent",
".",
"new",
"self",
",",
":... | execute binding when a row is entered, used more in lists to display some text
in a header or footer as one traverses | [
"execute",
"binding",
"when",
"a",
"row",
"is",
"entered",
"used",
"more",
"in",
"lists",
"to",
"display",
"some",
"text",
"in",
"a",
"header",
"or",
"footer",
"as",
"one",
"traverses"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/textpad.rb#L1139-L1148 | train |
mare-imbrium/canis | lib/canis/core/widgets/textpad.rb | Canis.TextPad.next_regex | def next_regex regex
if regex.is_a? Symbol
regex = @text_patterns[regex]
raise "Pattern specified #{regex} does not exist in text_patterns " unless regex
end
@last_regex = regex
find_more
end | ruby | def next_regex regex
if regex.is_a? Symbol
regex = @text_patterns[regex]
raise "Pattern specified #{regex} does not exist in text_patterns " unless regex
end
@last_regex = regex
find_more
end | [
"def",
"next_regex",
"regex",
"if",
"regex",
".",
"is_a?",
"Symbol",
"regex",
"=",
"@text_patterns",
"[",
"regex",
"]",
"raise",
"\"Pattern specified #{regex} does not exist in text_patterns \"",
"unless",
"regex",
"end",
"@last_regex",
"=",
"regex",
"find_more",
"end"
... | search for the next occurence of given regexp. Returns line and col if found, else nil.
@param [String, Regexp] pattern to search for (uses :index)
@return [nil] return value of no consequence | [
"search",
"for",
"the",
"next",
"occurence",
"of",
"given",
"regexp",
".",
"Returns",
"line",
"and",
"col",
"if",
"found",
"else",
"nil",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/textpad.rb#L1470-L1477 | train |
mare-imbrium/canis | lib/canis/core/widgets/textpad.rb | Canis.AbstractTextPadRenderer.pre_render | def pre_render
@attr = @source.attr
cp = get_color($datacolor, @source.color(), @source.bgcolor())
@color_pair = @source.color_pair || cp
@cp = FFI::NCurses.COLOR_PAIR(cp)
end | ruby | def pre_render
@attr = @source.attr
cp = get_color($datacolor, @source.color(), @source.bgcolor())
@color_pair = @source.color_pair || cp
@cp = FFI::NCurses.COLOR_PAIR(cp)
end | [
"def",
"pre_render",
"@attr",
"=",
"@source",
".",
"attr",
"cp",
"=",
"get_color",
"(",
"$datacolor",
",",
"@source",
".",
"color",
"(",
")",
",",
"@source",
".",
"bgcolor",
"(",
")",
")",
"@color_pair",
"=",
"@source",
".",
"color_pair",
"||",
"cp",
"... | have the renderer get the latest colors from the widget.
Override this if for some reason the renderer wishes to hardcode its own.
But then the widgets colors would be changed ? | [
"have",
"the",
"renderer",
"get",
"the",
"latest",
"colors",
"from",
"the",
"widget",
".",
"Override",
"this",
"if",
"for",
"some",
"reason",
"the",
"renderer",
"wishes",
"to",
"hardcode",
"its",
"own",
".",
"But",
"then",
"the",
"widgets",
"colors",
"woul... | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/textpad.rb#L1547-L1552 | train |
mare-imbrium/canis | lib/canis/core/widgets/textpad.rb | Canis.AbstractTextPadRenderer.render_all | def render_all pad, arr
pre_render
@content_cols = @source.pad_cols
@clearstring = " " * @content_cols
@list = arr
att = @attr || NORMAL
FFI::NCurses.wattron(pad, @cp | att)
arr.each_with_index { |line, ix|
render pad, ix, line
}
FFI::NCurses.wattroff(pad,... | ruby | def render_all pad, arr
pre_render
@content_cols = @source.pad_cols
@clearstring = " " * @content_cols
@list = arr
att = @attr || NORMAL
FFI::NCurses.wattron(pad, @cp | att)
arr.each_with_index { |line, ix|
render pad, ix, line
}
FFI::NCurses.wattroff(pad,... | [
"def",
"render_all",
"pad",
",",
"arr",
"pre_render",
"@content_cols",
"=",
"@source",
".",
"pad_cols",
"@clearstring",
"=",
"\" \"",
"*",
"@content_cols",
"@list",
"=",
"arr",
"att",
"=",
"@attr",
"||",
"NORMAL",
"FFI",
"::",
"NCurses",
".",
"wattron",
"(",... | derived classes may choose to override this.
However, they should set size and color and attrib at the start since these
can change after the object has been created depending on the application. | [
"derived",
"classes",
"may",
"choose",
"to",
"override",
"this",
".",
"However",
"they",
"should",
"set",
"size",
"and",
"color",
"and",
"attrib",
"at",
"the",
"start",
"since",
"these",
"can",
"change",
"after",
"the",
"object",
"has",
"been",
"created",
... | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/textpad.rb#L1558-L1571 | train |
mare-imbrium/canis | lib/canis/core/widgets/textpad.rb | Canis.DefaultRenderer.render | def render pad, lineno, text
if text.is_a? AbstractChunkLine
text.print pad, lineno, 0, @content_cols, color_pair, attr
return
end
## messabox does have a method to paint the whole window in bg color its in rwidget.rb
att = NORMAL
FFI::NCurses.wattron(pad, @cp | att)
... | ruby | def render pad, lineno, text
if text.is_a? AbstractChunkLine
text.print pad, lineno, 0, @content_cols, color_pair, attr
return
end
## messabox does have a method to paint the whole window in bg color its in rwidget.rb
att = NORMAL
FFI::NCurses.wattron(pad, @cp | att)
... | [
"def",
"render",
"pad",
",",
"lineno",
",",
"text",
"if",
"text",
".",
"is_a?",
"AbstractChunkLine",
"text",
".",
"print",
"pad",
",",
"lineno",
",",
"0",
",",
"@content_cols",
",",
"color_pair",
",",
"attr",
"return",
"end",
"att",
"=",
"NORMAL",
"FFI",... | default method for rendering a line
If it is a chunkline, then we take care of it.
Only if it is a String do we pass to renderer.
Should a renderer be allowed to handle chunks. Or be yielded chunks? | [
"default",
"method",
"for",
"rendering",
"a",
"line",
"If",
"it",
"is",
"a",
"chunkline",
"then",
"we",
"take",
"care",
"of",
"it",
".",
"Only",
"if",
"it",
"is",
"a",
"String",
"do",
"we",
"pass",
"to",
"renderer",
".",
"Should",
"a",
"renderer",
"b... | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/textpad.rb#L1590-L1603 | train |
mare-imbrium/canis | lib/canis/core/include/rhistory.rb | Canis.FieldHistory.history | def history arr
return @history unless arr
if arr.is_a? Array
@history = arr
else
@history << arr unless @history.include? arr
end
end | ruby | def history arr
return @history unless arr
if arr.is_a? Array
@history = arr
else
@history << arr unless @history.include? arr
end
end | [
"def",
"history",
"arr",
"return",
"@history",
"unless",
"arr",
"if",
"arr",
".",
"is_a?",
"Array",
"@history",
"=",
"arr",
"else",
"@history",
"<<",
"arr",
"unless",
"@history",
".",
"include?",
"arr",
"end",
"end"
] | pass the array of history values
Trying out a change where an item can also be sent in.
I am lost, i want the initialization to happen once. | [
"pass",
"the",
"array",
"of",
"history",
"values",
"Trying",
"out",
"a",
"change",
"where",
"an",
"item",
"can",
"also",
"be",
"sent",
"in",
".",
"I",
"am",
"lost",
"i",
"want",
"the",
"initialization",
"to",
"happen",
"once",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/rhistory.rb#L39-L46 | train |
mare-imbrium/canis | lib/canis/core/include/multibuffer.rb | Canis.MultiBuffers.add_content | def add_content text, config={}
unless @_buffers
bind_key(?\M-n, :buffer_next)
bind_key(?\M-p, :buffer_prev)
bind_key(KEY_BACKSPACE, :buffer_prev) # backspace, already hardcoded in textview !
bind_key(?:, :buffer_menu)
end
@_buffers ||= []
@_buffers_conf ||= []
... | ruby | def add_content text, config={}
unless @_buffers
bind_key(?\M-n, :buffer_next)
bind_key(?\M-p, :buffer_prev)
bind_key(KEY_BACKSPACE, :buffer_prev) # backspace, already hardcoded in textview !
bind_key(?:, :buffer_menu)
end
@_buffers ||= []
@_buffers_conf ||= []
... | [
"def",
"add_content",
"text",
",",
"config",
"=",
"{",
"}",
"unless",
"@_buffers",
"bind_key",
"(",
"?\\M-n",
",",
":buffer_next",
")",
"bind_key",
"(",
"?\\M-p",
",",
":buffer_prev",
")",
"bind_key",
"(",
"KEY_BACKSPACE",
",",
":buffer_prev",
")",
"bind_key",... | add content to buffers of a textview
@param [Array] text, or String (filename)
@param [Hash] options, typically :content_type => :ansi or :tmux, and :title | [
"add",
"content",
"to",
"buffers",
"of",
"a",
"textview"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/multibuffer.rb#L26-L43 | train |
mare-imbrium/canis | lib/canis/core/include/multibuffer.rb | Canis.MultiBuffers.add_files | def add_files filearray, config={}
filearray.each do |e| add_content(e, config.dup); end
end | ruby | def add_files filearray, config={}
filearray.each do |e| add_content(e, config.dup); end
end | [
"def",
"add_files",
"filearray",
",",
"config",
"=",
"{",
"}",
"filearray",
".",
"each",
"do",
"|",
"e",
"|",
"add_content",
"(",
"e",
",",
"config",
".",
"dup",
")",
";",
"end",
"end"
] | supply an array of files to the multibuffer. These will be read
as the user presses next or last etc. | [
"supply",
"an",
"array",
"of",
"files",
"to",
"the",
"multibuffer",
".",
"These",
"will",
"be",
"read",
"as",
"the",
"user",
"presses",
"next",
"or",
"last",
"etc",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/multibuffer.rb#L47-L49 | train |
mare-imbrium/canis | lib/canis/core/include/multibuffer.rb | Canis.MultiBuffers.buffer_next | def buffer_next
buffer_update_info
@_buffer_ctr += 1
x = @_buffer_ctr
l = @_buffers[x]
if l
populate_buffer_from_filename x
else
@_buffer_ctr = 0
end
set_content @_buffers[@_buffer_ctr], @_buffers_conf[@_buffer_ctr]
buffer_update_position
end | ruby | def buffer_next
buffer_update_info
@_buffer_ctr += 1
x = @_buffer_ctr
l = @_buffers[x]
if l
populate_buffer_from_filename x
else
@_buffer_ctr = 0
end
set_content @_buffers[@_buffer_ctr], @_buffers_conf[@_buffer_ctr]
buffer_update_position
end | [
"def",
"buffer_next",
"buffer_update_info",
"@_buffer_ctr",
"+=",
"1",
"x",
"=",
"@_buffer_ctr",
"l",
"=",
"@_buffers",
"[",
"x",
"]",
"if",
"l",
"populate_buffer_from_filename",
"x",
"else",
"@_buffer_ctr",
"=",
"0",
"end",
"set_content",
"@_buffers",
"[",
"@_b... | display next buffer | [
"display",
"next",
"buffer"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/multibuffer.rb#L52-L64 | train |
mare-imbrium/canis | lib/canis/core/include/multibuffer.rb | Canis.MultiBuffers.buffer_prev | def buffer_prev
buffer_update_info
if @_buffer_ctr < 1
buffer_last
return
end
@_buffer_ctr -= 1 if @_buffer_ctr > 0
x = @_buffer_ctr
l = @_buffers[x]
if l
populate_buffer_from_filename x
l = @_buffers[x]
$log.debug "bp calling set_content... | ruby | def buffer_prev
buffer_update_info
if @_buffer_ctr < 1
buffer_last
return
end
@_buffer_ctr -= 1 if @_buffer_ctr > 0
x = @_buffer_ctr
l = @_buffers[x]
if l
populate_buffer_from_filename x
l = @_buffers[x]
$log.debug "bp calling set_content... | [
"def",
"buffer_prev",
"buffer_update_info",
"if",
"@_buffer_ctr",
"<",
"1",
"buffer_last",
"return",
"end",
"@_buffer_ctr",
"-=",
"1",
"if",
"@_buffer_ctr",
">",
"0",
"x",
"=",
"@_buffer_ctr",
"l",
"=",
"@_buffers",
"[",
"x",
"]",
"if",
"l",
"populate_buffer_f... | display previous buffer if any | [
"display",
"previous",
"buffer",
"if",
"any"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/multibuffer.rb#L82-L98 | train |
mare-imbrium/canis | lib/canis/core/include/multibuffer.rb | Canis.MultiBuffers.buffer_menu | def buffer_menu
menu = PromptMenu.new self do
item :n, :buffer_next
item :p, :buffer_prev
item :b, :scroll_backward
item :f, :scroll_forward
item :l, :list_buffers
item :q, :close
submenu :m, "submenu..." do
item :p, :goto_last_position
i... | ruby | def buffer_menu
menu = PromptMenu.new self do
item :n, :buffer_next
item :p, :buffer_prev
item :b, :scroll_backward
item :f, :scroll_forward
item :l, :list_buffers
item :q, :close
submenu :m, "submenu..." do
item :p, :goto_last_position
i... | [
"def",
"buffer_menu",
"menu",
"=",
"PromptMenu",
".",
"new",
"self",
"do",
"item",
":n",
",",
":buffer_next",
"item",
":p",
",",
":buffer_prev",
"item",
":b",
",",
":scroll_backward",
"item",
":f",
",",
":scroll_forward",
"item",
":l",
",",
":list_buffers",
... | display a menu so user can do buffer management
However, how can application add to these. Or disable, such as when we
add buffer delete or buffer insert or edit | [
"display",
"a",
"menu",
"so",
"user",
"can",
"do",
"buffer",
"management",
"However",
"how",
"can",
"application",
"add",
"to",
"these",
".",
"Or",
"disable",
"such",
"as",
"when",
"we",
"add",
"buffer",
"delete",
"or",
"buffer",
"insert",
"or",
"edit"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/multibuffer.rb#L132-L147 | train |
mare-imbrium/canis | lib/canis/core/include/multibuffer.rb | Canis.MultiBuffers.list_buffers | def list_buffers
arr = []
@_buffers_conf.each_with_index do |e, i|
t = e[:title] || "no title for #{i}"
#$log.debug " TITLE is #{e.title} , t is #{t} "
arr << t
end
ix = popuplist arr
buffer_at ix
end | ruby | def list_buffers
arr = []
@_buffers_conf.each_with_index do |e, i|
t = e[:title] || "no title for #{i}"
#$log.debug " TITLE is #{e.title} , t is #{t} "
arr << t
end
ix = popuplist arr
buffer_at ix
end | [
"def",
"list_buffers",
"arr",
"=",
"[",
"]",
"@_buffers_conf",
".",
"each_with_index",
"do",
"|",
"e",
",",
"i",
"|",
"t",
"=",
"e",
"[",
":title",
"]",
"||",
"\"no title for #{i}\"",
"arr",
"<<",
"t",
"end",
"ix",
"=",
"popuplist",
"arr",
"buffer_at",
... | pops up a list of buffers using titles allowing the user to select
Based on selection, that buffer is displayed. | [
"pops",
"up",
"a",
"list",
"of",
"buffers",
"using",
"titles",
"allowing",
"the",
"user",
"to",
"select",
"Based",
"on",
"selection",
"that",
"buffer",
"is",
"displayed",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/multibuffer.rb#L150-L159 | train |
mare-imbrium/canis | lib/canis/core/widgets/deprecated/rtextview.rb | Canis.TextView.row_length | def row_length
case @buffer
when String
@buffer.length
when Chunks::ChunkLine
return @buffer.length
when Array
# this is for those old cases like rfe.rb which sent in an array
# (before we moved to chunks)
# line is an array of arrays
if @buffer[0... | ruby | def row_length
case @buffer
when String
@buffer.length
when Chunks::ChunkLine
return @buffer.length
when Array
# this is for those old cases like rfe.rb which sent in an array
# (before we moved to chunks)
# line is an array of arrays
if @buffer[0... | [
"def",
"row_length",
"case",
"@buffer",
"when",
"String",
"@buffer",
".",
"length",
"when",
"Chunks",
"::",
"ChunkLine",
"return",
"@buffer",
".",
"length",
"when",
"Array",
"if",
"@buffer",
"[",
"0",
"]",
".",
"is_a?",
"Array",
"result",
"=",
"0",
"@buffe... | determine length of row since we have chunks now.
Since chunk implements length, so not required except for the old
cases of demos that use an array. | [
"determine",
"length",
"of",
"row",
"since",
"we",
"have",
"chunks",
"now",
".",
"Since",
"chunk",
"implements",
"length",
"so",
"not",
"required",
"except",
"for",
"the",
"old",
"cases",
"of",
"demos",
"that",
"use",
"an",
"array",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/deprecated/rtextview.rb#L250-L268 | train |
mare-imbrium/canis | lib/canis/core/widgets/deprecated/rtextview.rb | Canis.TextView.getstr | def getstr prompt, maxlen=80 #:nodoc:
tabc = Proc.new {|str| Dir.glob(str +"*") }
config={}; config[:tab_completion] = tabc
config[:default] = "test"
config[:display_length] = 11
$log.debug " inside getstr before call "
ret, str = rbgetstr(@form.window, @row+@height-1, @col+1, promp... | ruby | def getstr prompt, maxlen=80 #:nodoc:
tabc = Proc.new {|str| Dir.glob(str +"*") }
config={}; config[:tab_completion] = tabc
config[:default] = "test"
config[:display_length] = 11
$log.debug " inside getstr before call "
ret, str = rbgetstr(@form.window, @row+@height-1, @col+1, promp... | [
"def",
"getstr",
"prompt",
",",
"maxlen",
"=",
"80",
"tabc",
"=",
"Proc",
".",
"new",
"{",
"|",
"str",
"|",
"Dir",
".",
"glob",
"(",
"str",
"+",
"\"*\"",
")",
"}",
"config",
"=",
"{",
"}",
";",
"config",
"[",
":tab_completion",
"]",
"=",
"tabc",
... | this is just a test of prompting user for a string
+ as an alternative to the dialog. | [
"this",
"is",
"just",
"a",
"test",
"of",
"prompting",
"user",
"for",
"a",
"string",
"+",
"as",
"an",
"alternative",
"to",
"the",
"dialog",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/deprecated/rtextview.rb#L616-L626 | train |
mare-imbrium/canis | lib/canis/core/widgets/rmessagebox.rb | Canis.MessageBox.message | def message message # yield label or field being used for display for further customization
@suggested_h = @height || 10
message = message.gsub(/[\n\r\t]/,' ') rescue message
message_col = 5
@suggested_w = @width || [message.size + 8 + message_col , FFI::NCurses.COLS-2].min
r = 3
len... | ruby | def message message # yield label or field being used for display for further customization
@suggested_h = @height || 10
message = message.gsub(/[\n\r\t]/,' ') rescue message
message_col = 5
@suggested_w = @width || [message.size + 8 + message_col , FFI::NCurses.COLS-2].min
r = 3
len... | [
"def",
"message",
"message",
"@suggested_h",
"=",
"@height",
"||",
"10",
"message",
"=",
"message",
".",
"gsub",
"(",
"/",
"\\n",
"\\r",
"\\t",
"/",
",",
"' '",
")",
"rescue",
"message",
"message_col",
"=",
"5",
"@suggested_w",
"=",
"@width",
"||",
"[",
... | Pass a short message to be printed.
This creates a label for a short message, and a field for a long one.
@yield field created
@param [String] text to display | [
"Pass",
"a",
"short",
"message",
"to",
"be",
"printed",
".",
"This",
"creates",
"a",
"label",
"for",
"a",
"short",
"message",
"and",
"a",
"field",
"for",
"a",
"long",
"one",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rmessagebox.rb#L151-L179 | train |
mare-imbrium/canis | lib/canis/core/widgets/rmessagebox.rb | Canis.MessageBox.text | def text message
@suggested_w = @width || (FFI::NCurses.COLS * 0.80).floor
@suggested_h = @height || (FFI::NCurses.LINES * 0.80).floor
message_col = 3
r = 2
display_length = @suggested_w-4
display_length -= message_col
clr = @color || :white
bgclr = @bgcolor || :black
... | ruby | def text message
@suggested_w = @width || (FFI::NCurses.COLS * 0.80).floor
@suggested_h = @height || (FFI::NCurses.LINES * 0.80).floor
message_col = 3
r = 2
display_length = @suggested_w-4
display_length -= message_col
clr = @color || :white
bgclr = @bgcolor || :black
... | [
"def",
"text",
"message",
"@suggested_w",
"=",
"@width",
"||",
"(",
"FFI",
"::",
"NCurses",
".",
"COLS",
"*",
"0.80",
")",
".",
"floor",
"@suggested_h",
"=",
"@height",
"||",
"(",
"FFI",
"::",
"NCurses",
".",
"LINES",
"*",
"0.80",
")",
".",
"floor",
... | This is for larger messages, or messages where the size is not known.
A textview object is created and yielded. | [
"This",
"is",
"for",
"larger",
"messages",
"or",
"messages",
"where",
"the",
"size",
"is",
"not",
"known",
".",
"A",
"textview",
"object",
"is",
"created",
"and",
"yielded",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rmessagebox.rb#L185-L232 | train |
mare-imbrium/canis | lib/canis/core/util/oldwidgetshortcuts.rb | Canis.WidgetShortcuts.textarea | def textarea config={}, &block
require 'canis/rtextarea'
# TODO confirm events many more
events = [ :CHANGE, :LEAVE, :ENTER ]
block_event = events[0]
#_process_args args, config, block_event, events
#config[:width] = config[:display_length] unless config.has_key? :width
# if n... | ruby | def textarea config={}, &block
require 'canis/rtextarea'
# TODO confirm events many more
events = [ :CHANGE, :LEAVE, :ENTER ]
block_event = events[0]
#_process_args args, config, block_event, events
#config[:width] = config[:display_length] unless config.has_key? :width
# if n... | [
"def",
"textarea",
"config",
"=",
"{",
"}",
",",
"&",
"block",
"require",
"'canis/rtextarea'",
"events",
"=",
"[",
":CHANGE",
",",
":LEAVE",
",",
":ENTER",
"]",
"block_event",
"=",
"events",
"[",
"0",
"]",
"useform",
"=",
"nil",
"w",
"=",
"TextArea",
"... | editable text area | [
"editable",
"text",
"area"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/util/oldwidgetshortcuts.rb#L111-L131 | train |
mare-imbrium/canis | lib/canis/core/util/oldwidgetshortcuts.rb | Canis.WidgetShortcuts.stack | def stack config={}, &block
s = WsStack.new config
_configure s
@_ws_active << s
yield_or_eval &block if block_given?
@_ws_active.pop
# ---- stack is finished now
last = @_ws_active.last
if last
case last
when WsStack
when WsFlow
... | ruby | def stack config={}, &block
s = WsStack.new config
_configure s
@_ws_active << s
yield_or_eval &block if block_given?
@_ws_active.pop
# ---- stack is finished now
last = @_ws_active.last
if last
case last
when WsStack
when WsFlow
... | [
"def",
"stack",
"config",
"=",
"{",
"}",
",",
"&",
"block",
"s",
"=",
"WsStack",
".",
"new",
"config",
"_configure",
"s",
"@_ws_active",
"<<",
"s",
"yield_or_eval",
"&",
"block",
"if",
"block_given?",
"@_ws_active",
".",
"pop",
"last",
"=",
"@_ws_active",
... | make it as simple as possible, don't try to be intelligent or
clever, put as much on the user | [
"make",
"it",
"as",
"simple",
"as",
"possible",
"don",
"t",
"try",
"to",
"be",
"intelligent",
"or",
"clever",
"put",
"as",
"much",
"on",
"the",
"user"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/util/oldwidgetshortcuts.rb#L195-L217 | train |
mare-imbrium/canis | lib/canis/core/util/oldwidgetshortcuts.rb | Canis.WidgetShortcuts.flow | def flow config={}, &block
s = WsFlow.new config
_configure s
@_ws_active << s
yield_or_eval &block if block_given?
@_ws_active.pop
last = @_ws_active.last
if last
case last
when WsStack
if s[:height]
last[:row] += s[:height]
e... | ruby | def flow config={}, &block
s = WsFlow.new config
_configure s
@_ws_active << s
yield_or_eval &block if block_given?
@_ws_active.pop
last = @_ws_active.last
if last
case last
when WsStack
if s[:height]
last[:row] += s[:height]
e... | [
"def",
"flow",
"config",
"=",
"{",
"}",
",",
"&",
"block",
"s",
"=",
"WsFlow",
".",
"new",
"config",
"_configure",
"s",
"@_ws_active",
"<<",
"s",
"yield_or_eval",
"&",
"block",
"if",
"block_given?",
"@_ws_active",
".",
"pop",
"last",
"=",
"@_ws_active",
... | item_width - width to use per item
but the item width may apply to stacks inside not to items | [
"item_width",
"-",
"width",
"to",
"use",
"per",
"item",
"but",
"the",
"item",
"width",
"may",
"apply",
"to",
"stacks",
"inside",
"not",
"to",
"items"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/util/oldwidgetshortcuts.rb#L221-L241 | train |
mare-imbrium/canis | lib/canis/core/util/oldwidgetshortcuts.rb | Canis.WidgetShortcuts.box | def box config={}, &block
require 'canis/core/widgets/box'
# take current stacks row and col
# advance row by one and col by one
# at end note row and advance by one
# draw a box around using these coordinates. width should be
# provided unless we have item width or something.
... | ruby | def box config={}, &block
require 'canis/core/widgets/box'
# take current stacks row and col
# advance row by one and col by one
# at end note row and advance by one
# draw a box around using these coordinates. width should be
# provided unless we have item width or something.
... | [
"def",
"box",
"config",
"=",
"{",
"}",
",",
"&",
"block",
"require",
"'canis/core/widgets/box'",
"last",
"=",
"@_ws_active",
".",
"last",
"if",
"last",
"r",
"=",
"last",
"[",
":row",
"]",
"c",
"=",
"last",
"[",
":col",
"]",
"config",
"[",
":row",
"]"... | flow and stack could have a border option | [
"flow",
"and",
"stack",
"could",
"have",
"a",
"border",
"option"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/util/oldwidgetshortcuts.rb#L243-L280 | train |
mare-imbrium/canis | lib/canis/core/util/promptmenu.rb | Canis.PromptMenu.menu_tree | def menu_tree mt, pm = self
mt.each_pair { |ch, code|
if code.is_a? Canis::MenuTree
item = pm.add(ch, code.value, "")
current = PromptMenu.new @caller, code.value
item.action = current
menu_tree code, current
else
item = pm.add(ch, code.to_s, "",... | ruby | def menu_tree mt, pm = self
mt.each_pair { |ch, code|
if code.is_a? Canis::MenuTree
item = pm.add(ch, code.value, "")
current = PromptMenu.new @caller, code.value
item.action = current
menu_tree code, current
else
item = pm.add(ch, code.to_s, "",... | [
"def",
"menu_tree",
"mt",
",",
"pm",
"=",
"self",
"mt",
".",
"each_pair",
"{",
"|",
"ch",
",",
"code",
"|",
"if",
"code",
".",
"is_a?",
"Canis",
"::",
"MenuTree",
"item",
"=",
"pm",
".",
"add",
"(",
"ch",
",",
"code",
".",
"value",
",",
"\"\"",
... | create the whole thing using a MenuTree which has minimal information.
It uses a hotkey and a code only. We are supposed to resolve the display text
and actual proc from the caller using this code. | [
"create",
"the",
"whole",
"thing",
"using",
"a",
"MenuTree",
"which",
"has",
"minimal",
"information",
".",
"It",
"uses",
"a",
"hotkey",
"and",
"a",
"code",
"only",
".",
"We",
"are",
"supposed",
"to",
"resolve",
"the",
"display",
"text",
"and",
"actual",
... | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/util/promptmenu.rb#L107-L118 | train |
mare-imbrium/canis | lib/canis/core/util/promptmenu.rb | Canis.PromptMenu.submenu | def submenu key, label, &block
item = CMenuItem.new(key, label)
@options << item
item.action = PromptMenu.new @caller, label, &block
end | ruby | def submenu key, label, &block
item = CMenuItem.new(key, label)
@options << item
item.action = PromptMenu.new @caller, label, &block
end | [
"def",
"submenu",
"key",
",",
"label",
",",
"&",
"block",
"item",
"=",
"CMenuItem",
".",
"new",
"(",
"key",
",",
"label",
")",
"@options",
"<<",
"item",
"item",
".",
"action",
"=",
"PromptMenu",
".",
"new",
"@caller",
",",
"label",
",",
"&",
"block",... | To allow a more rubyesque way of defining menus and submenus | [
"To",
"allow",
"a",
"more",
"rubyesque",
"way",
"of",
"defining",
"menus",
"and",
"submenus"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/util/promptmenu.rb#L121-L125 | train |
mare-imbrium/canis | lib/canis/core/util/promptmenu.rb | Canis.PromptMenu.display_columns | def display_columns config={}
prompt = config[:prompt] || "Choose: "
require 'canis/core/util/rcommandwindow'
layout = { :height => 5, :width => Ncurses.COLS-0, :top => Ncurses.LINES-6, :left => 0 }
rc = CommandWindow.new nil, :layout => layout, :box => true, :title => config[:title] || "Menu"
... | ruby | def display_columns config={}
prompt = config[:prompt] || "Choose: "
require 'canis/core/util/rcommandwindow'
layout = { :height => 5, :width => Ncurses.COLS-0, :top => Ncurses.LINES-6, :left => 0 }
rc = CommandWindow.new nil, :layout => layout, :box => true, :title => config[:title] || "Menu"
... | [
"def",
"display_columns",
"config",
"=",
"{",
"}",
"prompt",
"=",
"config",
"[",
":prompt",
"]",
"||",
"\"Choose: \"",
"require",
"'canis/core/util/rcommandwindow'",
"layout",
"=",
"{",
":height",
"=>",
"5",
",",
":width",
"=>",
"Ncurses",
".",
"COLS",
"-",
... | Display prompt_menu in columns using commandwindow
This is an improved way of showing the "most" like menu. The earlier
format would only print in one row. | [
"Display",
"prompt_menu",
"in",
"columns",
"using",
"commandwindow",
"This",
"is",
"an",
"improved",
"way",
"of",
"showing",
"the",
"most",
"like",
"menu",
".",
"The",
"earlier",
"format",
"would",
"only",
"print",
"in",
"one",
"row",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/util/promptmenu.rb#L131-L229 | train |
mare-imbrium/canis | lib/canis/core/include/deprecated/listcellrenderer.rb | Canis.ListCellRenderer.create_color_pairs | def create_color_pairs
@color_pair = get_color $datacolor
@pairs = Hash.new(@color_pair)
@attrs = Hash.new(Ncurses::A_NORMAL)
color_pair = get_color $selectedcolor, @parent.selected_color, @parent.selected_bgcolor
@pairs[:normal] = @color_pair
@pairs[:selected] = color_pair
@pa... | ruby | def create_color_pairs
@color_pair = get_color $datacolor
@pairs = Hash.new(@color_pair)
@attrs = Hash.new(Ncurses::A_NORMAL)
color_pair = get_color $selectedcolor, @parent.selected_color, @parent.selected_bgcolor
@pairs[:normal] = @color_pair
@pairs[:selected] = color_pair
@pa... | [
"def",
"create_color_pairs",
"@color_pair",
"=",
"get_color",
"$datacolor",
"@pairs",
"=",
"Hash",
".",
"new",
"(",
"@color_pair",
")",
"@attrs",
"=",
"Hash",
".",
"new",
"(",
"Ncurses",
"::",
"A_NORMAL",
")",
"color_pair",
"=",
"get_color",
"$selectedcolor",
... | creates pairs of colors at start
since often classes are overriding init_vars, so not gettin created | [
"creates",
"pairs",
"of",
"colors",
"at",
"start",
"since",
"often",
"classes",
"are",
"overriding",
"init_vars",
"so",
"not",
"gettin",
"created"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/deprecated/listcellrenderer.rb#L48-L59 | train |
mare-imbrium/canis | lib/canis/core/include/deprecated/listcellrenderer.rb | Canis.ListCellRenderer.repaint | def repaint graphic, r=@row,c=@col, row_index=-1,value=@text, focussed=false, selected=false
select_colors focussed, selected
# if listboxes width is reduced, display_len remains the same
# XXX FIXME parent may not be the list but a container like rfe !!
# maybe caller should update at start o... | ruby | def repaint graphic, r=@row,c=@col, row_index=-1,value=@text, focussed=false, selected=false
select_colors focussed, selected
# if listboxes width is reduced, display_len remains the same
# XXX FIXME parent may not be the list but a container like rfe !!
# maybe caller should update at start o... | [
"def",
"repaint",
"graphic",
",",
"r",
"=",
"@row",
",",
"c",
"=",
"@col",
",",
"row_index",
"=",
"-",
"1",
",",
"value",
"=",
"@text",
",",
"focussed",
"=",
"false",
",",
"selected",
"=",
"false",
"select_colors",
"focussed",
",",
"selected",
"value",... | paint a list box cell
@param [Buffer] window or buffer object used for printing
@param [Fixnum] row
@param [Fixnum] column
@param [Fixnum] actual index into data, some lists may have actual data elsewhere and
display data separate. e.g. rfe_renderer (directory listing)
@param [String] text ... | [
"paint",
"a",
"list",
"box",
"cell"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/deprecated/listcellrenderer.rb#L92-L113 | train |
mare-imbrium/canis | lib/canis/core/include/io.rb | Canis.Io.rb_getchar | def rb_getchar(prompt, config={}) # yield field
begin
win = __create_footer_window
#form = Form.new win
r = 0; c = 1;
default = config[:default]
prompt = "#{prompt} [#{default}] " if default
win.mvprintw(r, c, "%s: " % prompt);
bg = Ncurses.COLORS >= 236 ? ... | ruby | def rb_getchar(prompt, config={}) # yield field
begin
win = __create_footer_window
#form = Form.new win
r = 0; c = 1;
default = config[:default]
prompt = "#{prompt} [#{default}] " if default
win.mvprintw(r, c, "%s: " % prompt);
bg = Ncurses.COLORS >= 236 ? ... | [
"def",
"rb_getchar",
"(",
"prompt",
",",
"config",
"=",
"{",
"}",
")",
"begin",
"win",
"=",
"__create_footer_window",
"r",
"=",
"0",
";",
"c",
"=",
"1",
";",
"default",
"=",
"config",
"[",
":default",
"]",
"prompt",
"=",
"\"#{prompt} [#{default}] \"",
"i... | get a character.
unlike rb_gets allows user to enter control or alt or function character too.
@param [String] prompt or label to show.
@param [Hash] configuration such as default or regexp for validation
@return [Integer] nil if canceled, or ret value of getchar which is numeric
If default provided, then ENTER re... | [
"get",
"a",
"character",
".",
"unlike",
"rb_gets",
"allows",
"user",
"to",
"enter",
"control",
"or",
"alt",
"or",
"function",
"character",
"too",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/io.rb#L188-L235 | train |
mare-imbrium/canis | lib/canis/core/include/io.rb | Canis.Io.get_file | def get_file prompt, config={} #:nodoc:
maxlen = 70
tabc = Proc.new {|str| Dir.glob(str +"*") }
config[:tab_completion] ||= tabc
config[:maxlen] ||= maxlen
#config[:default] = "test"
#ret, str = rb_getstr(nil,0,0, prompt, maxlen, config)
# 2014-04-25 - 12:42 removed call to de... | ruby | def get_file prompt, config={} #:nodoc:
maxlen = 70
tabc = Proc.new {|str| Dir.glob(str +"*") }
config[:tab_completion] ||= tabc
config[:maxlen] ||= maxlen
#config[:default] = "test"
#ret, str = rb_getstr(nil,0,0, prompt, maxlen, config)
# 2014-04-25 - 12:42 removed call to de... | [
"def",
"get_file",
"prompt",
",",
"config",
"=",
"{",
"}",
"maxlen",
"=",
"70",
"tabc",
"=",
"Proc",
".",
"new",
"{",
"|",
"str",
"|",
"Dir",
".",
"glob",
"(",
"str",
"+",
"\"*\"",
")",
"}",
"config",
"[",
":tab_completion",
"]",
"||=",
"tabc",
"... | This is just experimental, trying out tab_completion
Prompt user for a file name, allowing him to tab to complete filenames
@see #choose_file from rcommandwindow.rb
@param [String] label to print before field
@param [Integer] max length of field
@return [String] filename or blank if user cancelled | [
"This",
"is",
"just",
"experimental",
"trying",
"out",
"tab_completion",
"Prompt",
"user",
"for",
"a",
"file",
"name",
"allowing",
"him",
"to",
"tab",
"to",
"complete",
"filenames"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/io.rb#L243-L255 | train |
mare-imbrium/canis | lib/canis/core/include/io.rb | Canis.Io.print_this | def print_this(win, text, color, x, y)
raise "win nil in print_this" unless win
color=Ncurses.COLOR_PAIR(color);
win.attron(color);
#win.mvprintw(x, y, "%-40s" % text);
win.mvprintw(x, y, "%s" % text);
win.attroff(color);
win.refresh
end | ruby | def print_this(win, text, color, x, y)
raise "win nil in print_this" unless win
color=Ncurses.COLOR_PAIR(color);
win.attron(color);
#win.mvprintw(x, y, "%-40s" % text);
win.mvprintw(x, y, "%s" % text);
win.attroff(color);
win.refresh
end | [
"def",
"print_this",
"(",
"win",
",",
"text",
",",
"color",
",",
"x",
",",
"y",
")",
"raise",
"\"win nil in print_this\"",
"unless",
"win",
"color",
"=",
"Ncurses",
".",
"COLOR_PAIR",
"(",
"color",
")",
";",
"win",
".",
"attron",
"(",
"color",
")",
";"... | prints given text to window, in color at x and y coordinates
@param [Window] window to write to
@param [String] text to print
@param [int] color pair such as $datacolor or $promptcolor
@param [int] x row
@param [int] y col
@see Window#printstring | [
"prints",
"given",
"text",
"to",
"window",
"in",
"color",
"at",
"x",
"and",
"y",
"coordinates"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/io.rb#L270-L278 | train |
mare-imbrium/canis | lib/canis/core/include/io.rb | Canis.Io.rb_getstr | def rb_getstr(nolongerused, r, c, prompt, maxlen, config={})
config[:maxlen] = maxlen
str = rb_gets(prompt, config)
if str
return 0, str
else
return -1, nil
end
end | ruby | def rb_getstr(nolongerused, r, c, prompt, maxlen, config={})
config[:maxlen] = maxlen
str = rb_gets(prompt, config)
if str
return 0, str
else
return -1, nil
end
end | [
"def",
"rb_getstr",
"(",
"nolongerused",
",",
"r",
",",
"c",
",",
"prompt",
",",
"maxlen",
",",
"config",
"=",
"{",
"}",
")",
"config",
"[",
":maxlen",
"]",
"=",
"maxlen",
"str",
"=",
"rb_gets",
"(",
"prompt",
",",
"config",
")",
"if",
"str",
"retu... | routine to get a string at bottom of window.
The first 3 params are no longer required since we create a window
of our own.
@param [String] prompt - label to show
@param [Integer] maxlen - max length of input
@param [Hash] config - :default, :width of Field, :help_text, :tab_completion
help_text is displayed on F... | [
"routine",
"to",
"get",
"a",
"string",
"at",
"bottom",
"of",
"window",
".",
"The",
"first",
"3",
"params",
"are",
"no",
"longer",
"required",
"since",
"we",
"create",
"a",
"window",
"of",
"our",
"own",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/include/io.rb#L307-L315 | train |
mare-imbrium/canis | lib/canis/core/widgets/deprecated/tabularwidget.rb | Canis.TabularWidget.columns= | def columns=(array)
@_header_adjustment = 1
@columns = array
@columns.each_with_index { |c,i|
@cw[i] ||= c.to_s.length
@calign[i] ||= :left
}
# maintains index in current pointer and gives next or prev
@column_pointer = Circular.new @columns.size()-1
end | ruby | def columns=(array)
@_header_adjustment = 1
@columns = array
@columns.each_with_index { |c,i|
@cw[i] ||= c.to_s.length
@calign[i] ||= :left
}
# maintains index in current pointer and gives next or prev
@column_pointer = Circular.new @columns.size()-1
end | [
"def",
"columns",
"=",
"(",
"array",
")",
"@_header_adjustment",
"=",
"1",
"@columns",
"=",
"array",
"@columns",
".",
"each_with_index",
"{",
"|",
"c",
",",
"i",
"|",
"@cw",
"[",
"i",
"]",
"||=",
"c",
".",
"to_s",
".",
"length",
"@calign",
"[",
"i",
... | set column names
@param [Array] column names or headings | [
"set",
"column",
"names"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/deprecated/tabularwidget.rb#L160-L169 | train |
mare-imbrium/canis | lib/canis/core/widgets/deprecated/tabularwidget.rb | Canis.TabularWidget.OLDprint_borders | def OLDprint_borders #:nodoc:
raise "#{self.class} needs width" unless @width
raise "#{self.class} needs height" unless @height
$log.debug " #{@name} print_borders, #{@graphic.name} "
bordercolor = @border_color || $datacolor
borderatt = @border_attrib || Ncurses::A_NORMAL
@graphi... | ruby | def OLDprint_borders #:nodoc:
raise "#{self.class} needs width" unless @width
raise "#{self.class} needs height" unless @height
$log.debug " #{@name} print_borders, #{@graphic.name} "
bordercolor = @border_color || $datacolor
borderatt = @border_attrib || Ncurses::A_NORMAL
@graphi... | [
"def",
"OLDprint_borders",
"raise",
"\"#{self.class} needs width\"",
"unless",
"@width",
"raise",
"\"#{self.class} needs height\"",
"unless",
"@height",
"$log",
".",
"debug",
"\" #{@name} print_borders, #{@graphic.name} \"",
"bordercolor",
"=",
"@border_color",
"||",
"$datacolor... | print a border
Note that print_border clears the area too, so should be used sparingly. | [
"print",
"a",
"border",
"Note",
"that",
"print_border",
"clears",
"the",
"area",
"too",
"so",
"should",
"be",
"used",
"sparingly",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/deprecated/tabularwidget.rb#L363-L373 | train |
mare-imbrium/canis | lib/canis/core/widgets/deprecated/tabularwidget.rb | Canis.TabularWidget.set_form_col | def set_form_col col1=@curpos #:nodoc:
@cols_panned ||= 0
@pad_offset ||= 0 # added 2010-02-11 21:54 since padded widgets get an offset.
@curpos = col1
maxlen = @maxlen || @width-@internal_width
#@curpos = maxlen if @curpos > maxlen
if @curpos > maxlen
@pcol = @curpos - maxle... | ruby | def set_form_col col1=@curpos #:nodoc:
@cols_panned ||= 0
@pad_offset ||= 0 # added 2010-02-11 21:54 since padded widgets get an offset.
@curpos = col1
maxlen = @maxlen || @width-@internal_width
#@curpos = maxlen if @curpos > maxlen
if @curpos > maxlen
@pcol = @curpos - maxle... | [
"def",
"set_form_col",
"col1",
"=",
"@curpos",
"@cols_panned",
"||=",
"0",
"@pad_offset",
"||=",
"0",
"@curpos",
"=",
"col1",
"maxlen",
"=",
"@maxlen",
"||",
"@width",
"-",
"@internal_width",
"if",
"@curpos",
">",
"maxlen",
"@pcol",
"=",
"@curpos",
"-",
"max... | set cursor on correct column tview | [
"set",
"cursor",
"on",
"correct",
"column",
"tview"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/deprecated/tabularwidget.rb#L540-L560 | train |
mare-imbrium/canis | lib/canis/core/widgets/deprecated/tabularwidget.rb | Canis.TabularWidget.print_data_row | def print_data_row r, c, len, value, color, attr
@graphic.printstring r, c, "%-*s" % [len,value], color, attr
end | ruby | def print_data_row r, c, len, value, color, attr
@graphic.printstring r, c, "%-*s" % [len,value], color, attr
end | [
"def",
"print_data_row",
"r",
",",
"c",
",",
"len",
",",
"value",
",",
"color",
",",
"attr",
"@graphic",
".",
"printstring",
"r",
",",
"c",
",",
"\"%-*s\"",
"%",
"[",
"len",
",",
"value",
"]",
",",
"color",
",",
"attr",
"end"
] | print data rows | [
"print",
"data",
"rows"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/deprecated/tabularwidget.rb#L675-L677 | train |
mare-imbrium/canis | lib/canis/core/widgets/deprecated/tabularwidget.rb | Canis.TabularWidget.truncate | def truncate content #:nodoc:
#maxlen = @maxlen || @width-2
_maxlen = @maxlen || @width-@internal_width
_maxlen = @width-@internal_width if _maxlen > @width-@internal_width
_maxlen -= @left_margin
if !content.nil?
cl = content.length
if cl > _maxlen # only show maxlen
... | ruby | def truncate content #:nodoc:
#maxlen = @maxlen || @width-2
_maxlen = @maxlen || @width-@internal_width
_maxlen = @width-@internal_width if _maxlen > @width-@internal_width
_maxlen -= @left_margin
if !content.nil?
cl = content.length
if cl > _maxlen # only show maxlen
... | [
"def",
"truncate",
"content",
"_maxlen",
"=",
"@maxlen",
"||",
"@width",
"-",
"@internal_width",
"_maxlen",
"=",
"@width",
"-",
"@internal_width",
"if",
"_maxlen",
">",
"@width",
"-",
"@internal_width",
"_maxlen",
"-=",
"@left_margin",
"if",
"!",
"content",
".",... | Truncates data to fit into display area.
Copied from listscrollable since we need to take care of left_margin
2011-10-6 This may need to be reflected in listbox and others FIXME | [
"Truncates",
"data",
"to",
"fit",
"into",
"display",
"area",
".",
"Copied",
"from",
"listscrollable",
"since",
"we",
"need",
"to",
"take",
"care",
"of",
"left_margin",
"2011",
"-",
"10",
"-",
"6",
"This",
"may",
"need",
"to",
"be",
"reflected",
"in",
"li... | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/deprecated/tabularwidget.rb#L682-L701 | train |
mare-imbrium/canis | lib/canis/core/widgets/deprecated/tabularwidget.rb | Canis.TabularWidget.print_header_row | def print_header_row r, c, len, value, color, attr
#acolor = $promptcolor
@graphic.printstring r, c+@left_margin, "%-*s" % [len-@left_margin ,value], color, attr
end | ruby | def print_header_row r, c, len, value, color, attr
#acolor = $promptcolor
@graphic.printstring r, c+@left_margin, "%-*s" % [len-@left_margin ,value], color, attr
end | [
"def",
"print_header_row",
"r",
",",
"c",
",",
"len",
",",
"value",
",",
"color",
",",
"attr",
"@graphic",
".",
"printstring",
"r",
",",
"c",
"+",
"@left_margin",
",",
"\"%-*s\"",
"%",
"[",
"len",
"-",
"@left_margin",
",",
"value",
"]",
",",
"color",
... | print header row
allows user to override | [
"print",
"header",
"row",
"allows",
"user",
"to",
"override"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/deprecated/tabularwidget.rb#L705-L708 | train |
mare-imbrium/canis | lib/canis/core/widgets/deprecated/tabularwidget.rb | Canis.TabularWidget.print_header | def print_header
r,c = rowcol
value = convert_value_to_text :columns, 0
len = @width - @internal_width
truncate value # else it can later suddenly exceed line
@header_color_pair ||= get_color $promptcolor, @header_fgcolor, @header_bgcolor
@header_attrib ||= @attr
print_header_r... | ruby | def print_header
r,c = rowcol
value = convert_value_to_text :columns, 0
len = @width - @internal_width
truncate value # else it can later suddenly exceed line
@header_color_pair ||= get_color $promptcolor, @header_fgcolor, @header_bgcolor
@header_attrib ||= @attr
print_header_r... | [
"def",
"print_header",
"r",
",",
"c",
"=",
"rowcol",
"value",
"=",
"convert_value_to_text",
":columns",
",",
"0",
"len",
"=",
"@width",
"-",
"@internal_width",
"truncate",
"value",
"@header_color_pair",
"||=",
"get_color",
"$promptcolor",
",",
"@header_fgcolor",
"... | prints the column headers
Uses +convert_value_to_text+ and +print_header_row+ | [
"prints",
"the",
"column",
"headers",
"Uses",
"+",
"convert_value_to_text",
"+",
"and",
"+",
"print_header_row",
"+"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/deprecated/tabularwidget.rb#L721-L729 | train |
mare-imbrium/canis | lib/canis/core/widgets/deprecated/tabularwidget.rb | Canis.TabularWidget._guess_col_widths | def _guess_col_widths #:nodoc:
return if @second_time
@second_time = true if @list.size > 0
@list.each_with_index { |r, i|
break if i > 10
next if r == :separator
r.each_with_index { |c, j|
x = c.to_s.length
if @cw[j].nil?
@cw[j] = x
... | ruby | def _guess_col_widths #:nodoc:
return if @second_time
@second_time = true if @list.size > 0
@list.each_with_index { |r, i|
break if i > 10
next if r == :separator
r.each_with_index { |c, j|
x = c.to_s.length
if @cw[j].nil?
@cw[j] = x
... | [
"def",
"_guess_col_widths",
"return",
"if",
"@second_time",
"@second_time",
"=",
"true",
"if",
"@list",
".",
"size",
">",
"0",
"@list",
".",
"each_with_index",
"{",
"|",
"r",
",",
"i",
"|",
"break",
"if",
"i",
">",
"10",
"next",
"if",
"r",
"==",
":sepa... | perhaps we can delete this since it does not respect @pw
@deprecated (see _estimate_column_widths) | [
"perhaps",
"we",
"can",
"delete",
"this",
"since",
"it",
"does",
"not",
"respect"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/deprecated/tabularwidget.rb#L784-L805 | train |
mare-imbrium/canis | lib/canis/core/widgets/deprecated/tabularwidget.rb | Canis.TabularWidget.next_column | def next_column
c = @column_pointer.next
cp = @coffsets[c]
#$log.debug " next_column #{c} , #{cp} "
@curpos = cp if cp
next_row() if c < @column_pointer.last_index
#addcol cp
set_form_col
end | ruby | def next_column
c = @column_pointer.next
cp = @coffsets[c]
#$log.debug " next_column #{c} , #{cp} "
@curpos = cp if cp
next_row() if c < @column_pointer.last_index
#addcol cp
set_form_col
end | [
"def",
"next_column",
"c",
"=",
"@column_pointer",
".",
"next",
"cp",
"=",
"@coffsets",
"[",
"c",
"]",
"@curpos",
"=",
"cp",
"if",
"cp",
"next_row",
"(",
")",
"if",
"c",
"<",
"@column_pointer",
".",
"last_index",
"set_form_col",
"end"
] | move cursor to next column
FIXME need to account for hidden columns and numbering | [
"move",
"cursor",
"to",
"next",
"column",
"FIXME",
"need",
"to",
"account",
"for",
"hidden",
"columns",
"and",
"numbering"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/deprecated/tabularwidget.rb#L936-L944 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.get_server | def get_server(name)
params = {
'command' => 'listVirtualMachines',
'name' => name
}
json = send_request(params)
machines = json['virtualmachine']
if !machines || machines.empty? then
return nil
end
machine = machines.select { |item| name == item['n... | ruby | def get_server(name)
params = {
'command' => 'listVirtualMachines',
'name' => name
}
json = send_request(params)
machines = json['virtualmachine']
if !machines || machines.empty? then
return nil
end
machine = machines.select { |item| name == item['n... | [
"def",
"get_server",
"(",
"name",
")",
"params",
"=",
"{",
"'command'",
"=>",
"'listVirtualMachines'",
",",
"'name'",
"=>",
"name",
"}",
"json",
"=",
"send_request",
"(",
"params",
")",
"machines",
"=",
"json",
"[",
"'virtualmachine'",
"]",
"if",
"!",
"mac... | Finds the server with the specified name. | [
"Finds",
"the",
"server",
"with",
"the",
"specified",
"name",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L79-L92 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.get_server_public_ip | def get_server_public_ip(server, cached_rules=nil, cached_nat=nil)
return nil unless server
# find the public ip
nic = get_server_default_nic(server)
ssh_rule = get_ssh_port_forwarding_rule(server, cached_rules)
return ssh_rule['ipaddress'] if ssh_rule
winrm_rule = get_winrm_port_f... | ruby | def get_server_public_ip(server, cached_rules=nil, cached_nat=nil)
return nil unless server
# find the public ip
nic = get_server_default_nic(server)
ssh_rule = get_ssh_port_forwarding_rule(server, cached_rules)
return ssh_rule['ipaddress'] if ssh_rule
winrm_rule = get_winrm_port_f... | [
"def",
"get_server_public_ip",
"(",
"server",
",",
"cached_rules",
"=",
"nil",
",",
"cached_nat",
"=",
"nil",
")",
"return",
"nil",
"unless",
"server",
"nic",
"=",
"get_server_default_nic",
"(",
"server",
")",
"ssh_rule",
"=",
"get_ssh_port_forwarding_rule",
"(",
... | Finds the public ip for a server | [
"Finds",
"the",
"public",
"ip",
"for",
"a",
"server"
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L97-L121 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.get_server_fqdn | def get_server_fqdn(server)
return nil unless server
nic = get_server_default_nic(server) || {}
networks = list_networks || {}
id = nic['networkid']
network = networks.select { |net|
net['id'] == id
}.first
return nil unless network
"#{server['name']}.#{network... | ruby | def get_server_fqdn(server)
return nil unless server
nic = get_server_default_nic(server) || {}
networks = list_networks || {}
id = nic['networkid']
network = networks.select { |net|
net['id'] == id
}.first
return nil unless network
"#{server['name']}.#{network... | [
"def",
"get_server_fqdn",
"(",
"server",
")",
"return",
"nil",
"unless",
"server",
"nic",
"=",
"get_server_default_nic",
"(",
"server",
")",
"||",
"{",
"}",
"networks",
"=",
"list_networks",
"||",
"{",
"}",
"id",
"=",
"nic",
"[",
"'networkid'",
"]",
"netwo... | Returns the fully qualified domain name for a server. | [
"Returns",
"the",
"fully",
"qualified",
"domain",
"name",
"for",
"a",
"server",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L126-L139 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.list_object | def list_object(params, json_result)
json = send_request(params)
Chef::Log.debug("JSON (list_object) result: #{json}")
result = json["#{json_result}"] || []
result = data_filter(result, params['filter']) if params['filter']
result
end | ruby | def list_object(params, json_result)
json = send_request(params)
Chef::Log.debug("JSON (list_object) result: #{json}")
result = json["#{json_result}"] || []
result = data_filter(result, params['filter']) if params['filter']
result
end | [
"def",
"list_object",
"(",
"params",
",",
"json_result",
")",
"json",
"=",
"send_request",
"(",
"params",
")",
"Chef",
"::",
"Log",
".",
"debug",
"(",
"\"JSON (list_object) result: #{json}\"",
")",
"result",
"=",
"json",
"[",
"\"#{json_result}\"",
"]",
"||",
"... | List all the objects based on the command that is specified. | [
"List",
"all",
"the",
"objects",
"based",
"on",
"the",
"command",
"that",
"is",
"specified",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L150-L157 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.create_server | def create_server(host_name, service_name, template_name, disk_name=nil, zone_name=nil, network_names=[], extra_params)
if host_name then
if get_server(host_name) then
puts "\nError: Server '#{host_name}' already exists."
exit 1
end
end
service = get_service_offer... | ruby | def create_server(host_name, service_name, template_name, disk_name=nil, zone_name=nil, network_names=[], extra_params)
if host_name then
if get_server(host_name) then
puts "\nError: Server '#{host_name}' already exists."
exit 1
end
end
service = get_service_offer... | [
"def",
"create_server",
"(",
"host_name",
",",
"service_name",
",",
"template_name",
",",
"disk_name",
"=",
"nil",
",",
"zone_name",
"=",
"nil",
",",
"network_names",
"=",
"[",
"]",
",",
"extra_params",
")",
"if",
"host_name",
"then",
"if",
"get_server",
"("... | Deploys a new server using the specified parameters. | [
"Deploys",
"a",
"new",
"server",
"using",
"the",
"specified",
"parameters",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L173-L264 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.delete_server | def delete_server(name, expunge)
server = get_server(name)
if !server || !server['id'] then
puts "\nError: Virtual machine '#{name}' does not exist"
exit 1
end
params = {
'command' => 'destroyVirtualMachine',
'id' => server['id'],
'expunge' => expun... | ruby | def delete_server(name, expunge)
server = get_server(name)
if !server || !server['id'] then
puts "\nError: Virtual machine '#{name}' does not exist"
exit 1
end
params = {
'command' => 'destroyVirtualMachine',
'id' => server['id'],
'expunge' => expun... | [
"def",
"delete_server",
"(",
"name",
",",
"expunge",
")",
"server",
"=",
"get_server",
"(",
"name",
")",
"if",
"!",
"server",
"||",
"!",
"server",
"[",
"'id'",
"]",
"then",
"puts",
"\"\\nError: Virtual machine '#{name}' does not exist\"",
"exit",
"1",
"end",
"... | Deletes the server with the specified name. | [
"Deletes",
"the",
"server",
"with",
"the",
"specified",
"name",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L270-L285 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.stop_server | def stop_server(name, forced=nil)
server = get_server(name)
if !server || !server['id'] then
puts "\nError: Virtual machine '#{name}' does not exist"
exit 1
end
params = {
'command' => 'stopVirtualMachine',
'id' => server['id']
}
params['forced'] ... | ruby | def stop_server(name, forced=nil)
server = get_server(name)
if !server || !server['id'] then
puts "\nError: Virtual machine '#{name}' does not exist"
exit 1
end
params = {
'command' => 'stopVirtualMachine',
'id' => server['id']
}
params['forced'] ... | [
"def",
"stop_server",
"(",
"name",
",",
"forced",
"=",
"nil",
")",
"server",
"=",
"get_server",
"(",
"name",
")",
"if",
"!",
"server",
"||",
"!",
"server",
"[",
"'id'",
"]",
"then",
"puts",
"\"\\nError: Virtual machine '#{name}' does not exist\"",
"exit",
"1",... | Stops the server with the specified name. | [
"Stops",
"the",
"server",
"with",
"the",
"specified",
"name",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L291-L306 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.start_server | def start_server(name)
server = get_server(name)
if !server || !server['id'] then
puts "\nError: Virtual machine '#{name}' does not exist"
exit 1
end
params = {
'command' => 'startVirtualMachine',
'id' => server['id']
}
json = send_async_request(... | ruby | def start_server(name)
server = get_server(name)
if !server || !server['id'] then
puts "\nError: Virtual machine '#{name}' does not exist"
exit 1
end
params = {
'command' => 'startVirtualMachine',
'id' => server['id']
}
json = send_async_request(... | [
"def",
"start_server",
"(",
"name",
")",
"server",
"=",
"get_server",
"(",
"name",
")",
"if",
"!",
"server",
"||",
"!",
"server",
"[",
"'id'",
"]",
"then",
"puts",
"\"\\nError: Virtual machine '#{name}' does not exist\"",
"exit",
"1",
"end",
"params",
"=",
"{"... | Start the server with the specified name. | [
"Start",
"the",
"server",
"with",
"the",
"specified",
"name",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L312-L326 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.get_service_offering | def get_service_offering(name)
# TODO: use name parameter
# listServiceOfferings in CloudStack 2.2 doesn't seem to work
# when the name parameter is specified. When this is fixed,
# the name parameter should be added to the request.
params = {
'command' => 'listServiceOfferings'... | ruby | def get_service_offering(name)
# TODO: use name parameter
# listServiceOfferings in CloudStack 2.2 doesn't seem to work
# when the name parameter is specified. When this is fixed,
# the name parameter should be added to the request.
params = {
'command' => 'listServiceOfferings'... | [
"def",
"get_service_offering",
"(",
"name",
")",
"params",
"=",
"{",
"'command'",
"=>",
"'listServiceOfferings'",
"}",
"json",
"=",
"send_request",
"(",
"params",
")",
"services",
"=",
"json",
"[",
"'serviceoffering'",
"]",
"return",
"nil",
"unless",
"services",... | Finds the service offering with the specified name. | [
"Finds",
"the",
"service",
"offering",
"with",
"the",
"specified",
"name",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L351-L373 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.get_template | def get_template(name, zone_name=nil)
# TODO: use name parameter
# listTemplates in CloudStack 2.2 doesn't seem to work
# when the name parameter is specified. When this is fixed,
# the name parameter should be added to the request.
zone = zone_name ? get_zone(zone_name) : get_default_zo... | ruby | def get_template(name, zone_name=nil)
# TODO: use name parameter
# listTemplates in CloudStack 2.2 doesn't seem to work
# when the name parameter is specified. When this is fixed,
# the name parameter should be added to the request.
zone = zone_name ? get_zone(zone_name) : get_default_zo... | [
"def",
"get_template",
"(",
"name",
",",
"zone_name",
"=",
"nil",
")",
"zone",
"=",
"zone_name",
"?",
"get_zone",
"(",
"zone_name",
")",
":",
"get_default_zone",
"params",
"=",
"{",
"'command'",
"=>",
"'listTemplates'",
",",
"'templateFilter'",
"=>",
"'executa... | Finds the template with the specified name. | [
"Finds",
"the",
"template",
"with",
"the",
"specified",
"name",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L398-L426 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.get_iso | def get_iso(name, zone_name=nil)
zone = zone_name ? get_zone(zone_name) : get_default_zone
params = {
'command' => 'listIsos',
'isoFilter' => 'executable',
}
params['zoneid'] = zone['id'] if zone
json = send_request(params)
iso = json['iso']
return nil unl... | ruby | def get_iso(name, zone_name=nil)
zone = zone_name ? get_zone(zone_name) : get_default_zone
params = {
'command' => 'listIsos',
'isoFilter' => 'executable',
}
params['zoneid'] = zone['id'] if zone
json = send_request(params)
iso = json['iso']
return nil unl... | [
"def",
"get_iso",
"(",
"name",
",",
"zone_name",
"=",
"nil",
")",
"zone",
"=",
"zone_name",
"?",
"get_zone",
"(",
"zone_name",
")",
":",
"get_default_zone",
"params",
"=",
"{",
"'command'",
"=>",
"'listIsos'",
",",
"'isoFilter'",
"=>",
"'executable'",
",",
... | Finds the iso with the specified name. | [
"Finds",
"the",
"iso",
"with",
"the",
"specified",
"name",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L431-L452 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.get_disk_offering | def get_disk_offering(name)
params = {
'command' => 'listDiskOfferings',
}
json = send_request(params)
disks = json['diskoffering']
return nil if !disks
disks.each { |d|
return d if d['name'] == name
}
nil
end | ruby | def get_disk_offering(name)
params = {
'command' => 'listDiskOfferings',
}
json = send_request(params)
disks = json['diskoffering']
return nil if !disks
disks.each { |d|
return d if d['name'] == name
}
nil
end | [
"def",
"get_disk_offering",
"(",
"name",
")",
"params",
"=",
"{",
"'command'",
"=>",
"'listDiskOfferings'",
",",
"}",
"json",
"=",
"send_request",
"(",
"params",
")",
"disks",
"=",
"json",
"[",
"'diskoffering'",
"]",
"return",
"nil",
"if",
"!",
"disks",
"d... | Finds the disk offering with the specified name. | [
"Finds",
"the",
"disk",
"offering",
"with",
"the",
"specified",
"name",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L459-L472 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.get_volume | def get_volume(name)
params = {
'command' => 'listVolumes',
'name' => name
}
json = send_request(params)
volumes = json['volume']
if !volumes || volumes.empty? then
return nil
end
volume = volumes.select { |item| name == item['name'] }
volume.... | ruby | def get_volume(name)
params = {
'command' => 'listVolumes',
'name' => name
}
json = send_request(params)
volumes = json['volume']
if !volumes || volumes.empty? then
return nil
end
volume = volumes.select { |item| name == item['name'] }
volume.... | [
"def",
"get_volume",
"(",
"name",
")",
"params",
"=",
"{",
"'command'",
"=>",
"'listVolumes'",
",",
"'name'",
"=>",
"name",
"}",
"json",
"=",
"send_request",
"(",
"params",
")",
"volumes",
"=",
"json",
"[",
"'volume'",
"]",
"if",
"!",
"volumes",
"||",
... | Finds the volume with the specified name. | [
"Finds",
"the",
"volume",
"with",
"the",
"specified",
"name",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L478-L491 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.delete_volume | def delete_volume(name)
volume = get_volume(name)
if !volume || !volume['id'] then
puts "\nError: Volume '#{name}' does not exist"
exit 1
end
params = {
'command' => 'deleteVolume',
'id' => volume['id']
}
json = send_request(params)
json['s... | ruby | def delete_volume(name)
volume = get_volume(name)
if !volume || !volume['id'] then
puts "\nError: Volume '#{name}' does not exist"
exit 1
end
params = {
'command' => 'deleteVolume',
'id' => volume['id']
}
json = send_request(params)
json['s... | [
"def",
"delete_volume",
"(",
"name",
")",
"volume",
"=",
"get_volume",
"(",
"name",
")",
"if",
"!",
"volume",
"||",
"!",
"volume",
"[",
"'id'",
"]",
"then",
"puts",
"\"\\nError: Volume '#{name}' does not exist\"",
"exit",
"1",
"end",
"params",
"=",
"{",
"'co... | Deletes the volume with the specified name. | [
"Deletes",
"the",
"volume",
"with",
"the",
"specified",
"name",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L497-L511 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.get_project | def get_project(name)
params = {
'command' => 'listProjects',
'listall' => true
}
json = send_request(params)
projects = json['project']
return nil unless projects
projects.each { |n|
if name.is_uuid? then
return n if n['id'] == name
else
... | ruby | def get_project(name)
params = {
'command' => 'listProjects',
'listall' => true
}
json = send_request(params)
projects = json['project']
return nil unless projects
projects.each { |n|
if name.is_uuid? then
return n if n['id'] == name
else
... | [
"def",
"get_project",
"(",
"name",
")",
"params",
"=",
"{",
"'command'",
"=>",
"'listProjects'",
",",
"'listall'",
"=>",
"true",
"}",
"json",
"=",
"send_request",
"(",
"params",
")",
"projects",
"=",
"json",
"[",
"'project'",
"]",
"return",
"nil",
"unless"... | Fetch project with the specified name | [
"Fetch",
"project",
"with",
"the",
"specified",
"name"
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L535-L553 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.data_filter | def data_filter(data, filters)
filters.split(',').each do |filter|
field = filter.split(':').first.strip.downcase
search = filter.split(':').last.strip
if search =~ /^\/.*\/?/
data = data.find_all { |k| k["#{field}"].to_s =~ search.to_regexp } if field && search
else
... | ruby | def data_filter(data, filters)
filters.split(',').each do |filter|
field = filter.split(':').first.strip.downcase
search = filter.split(':').last.strip
if search =~ /^\/.*\/?/
data = data.find_all { |k| k["#{field}"].to_s =~ search.to_regexp } if field && search
else
... | [
"def",
"data_filter",
"(",
"data",
",",
"filters",
")",
"filters",
".",
"split",
"(",
"','",
")",
".",
"each",
"do",
"|",
"filter",
"|",
"field",
"=",
"filter",
".",
"split",
"(",
"':'",
")",
".",
"first",
".",
"strip",
".",
"downcase",
"search",
"... | Filter data on regex or just on string | [
"Filter",
"data",
"on",
"regex",
"or",
"just",
"on",
"string"
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L558-L569 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.get_network | def get_network(name)
params = {
'command' => 'listNetworks'
}
json = send_request(params)
networks = json['network']
return nil unless networks
networks.each { |n|
if name.is_uuid? then
return n if n['id'] == name
else
return n if n['n... | ruby | def get_network(name)
params = {
'command' => 'listNetworks'
}
json = send_request(params)
networks = json['network']
return nil unless networks
networks.each { |n|
if name.is_uuid? then
return n if n['id'] == name
else
return n if n['n... | [
"def",
"get_network",
"(",
"name",
")",
"params",
"=",
"{",
"'command'",
"=>",
"'listNetworks'",
"}",
"json",
"=",
"send_request",
"(",
"params",
")",
"networks",
"=",
"json",
"[",
"'network'",
"]",
"return",
"nil",
"unless",
"networks",
"networks",
".",
"... | Finds the network with the specified name. | [
"Finds",
"the",
"network",
"with",
"the",
"specified",
"name",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L575-L592 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.get_default_network | def get_default_network(zone)
params = {
'command' => 'listNetworks',
'isDefault' => true,
'zoneid' => zone
}
json = send_request(params)
networks = json['network']
return nil if !networks || networks.empty?
default = networks.first
return defaul... | ruby | def get_default_network(zone)
params = {
'command' => 'listNetworks',
'isDefault' => true,
'zoneid' => zone
}
json = send_request(params)
networks = json['network']
return nil if !networks || networks.empty?
default = networks.first
return defaul... | [
"def",
"get_default_network",
"(",
"zone",
")",
"params",
"=",
"{",
"'command'",
"=>",
"'listNetworks'",
",",
"'isDefault'",
"=>",
"true",
",",
"'zoneid'",
"=>",
"zone",
"}",
"json",
"=",
"send_request",
"(",
"params",
")",
"networks",
"=",
"json",
"[",
"'... | Finds the default network. | [
"Finds",
"the",
"default",
"network",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L597-L619 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.get_zone | def get_zone(name)
params = {
'command' => 'listZones',
'available' => 'true'
}
json = send_request(params)
networks = json['zone']
return nil unless networks
networks.each { |z|
if name.is_uuid? then
return z if z['id'] == name
else
... | ruby | def get_zone(name)
params = {
'command' => 'listZones',
'available' => 'true'
}
json = send_request(params)
networks = json['zone']
return nil unless networks
networks.each { |z|
if name.is_uuid? then
return z if z['id'] == name
else
... | [
"def",
"get_zone",
"(",
"name",
")",
"params",
"=",
"{",
"'command'",
"=>",
"'listZones'",
",",
"'available'",
"=>",
"'true'",
"}",
"json",
"=",
"send_request",
"(",
"params",
")",
"networks",
"=",
"json",
"[",
"'zone'",
"]",
"return",
"nil",
"unless",
"... | Finds the zone with the specified name. | [
"Finds",
"the",
"zone",
"with",
"the",
"specified",
"name",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L635-L653 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.get_default_zone | def get_default_zone
params = {
'command' => 'listZones',
'available' => 'true'
}
json = send_request(params)
zones = json['zone']
return nil unless zones
# zones.sort! # sort zones so we always return the same zone
# !this gives error in our production env... | ruby | def get_default_zone
params = {
'command' => 'listZones',
'available' => 'true'
}
json = send_request(params)
zones = json['zone']
return nil unless zones
# zones.sort! # sort zones so we always return the same zone
# !this gives error in our production env... | [
"def",
"get_default_zone",
"params",
"=",
"{",
"'command'",
"=>",
"'listZones'",
",",
"'available'",
"=>",
"'true'",
"}",
"json",
"=",
"send_request",
"(",
"params",
")",
"zones",
"=",
"json",
"[",
"'zone'",
"]",
"return",
"nil",
"unless",
"zones",
"zones",
... | Finds the default zone for your account. | [
"Finds",
"the",
"default",
"zone",
"for",
"your",
"account",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L684-L696 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.get_public_ip_address | def get_public_ip_address(ip_address)
params = {
'command' => 'listPublicIpAddresses',
'ipaddress' => ip_address
}
json = send_request(params)
return nil unless json['publicipaddress']
json['publicipaddress'].first
end | ruby | def get_public_ip_address(ip_address)
params = {
'command' => 'listPublicIpAddresses',
'ipaddress' => ip_address
}
json = send_request(params)
return nil unless json['publicipaddress']
json['publicipaddress'].first
end | [
"def",
"get_public_ip_address",
"(",
"ip_address",
")",
"params",
"=",
"{",
"'command'",
"=>",
"'listPublicIpAddresses'",
",",
"'ipaddress'",
"=>",
"ip_address",
"}",
"json",
"=",
"send_request",
"(",
"params",
")",
"return",
"nil",
"unless",
"json",
"[",
"'publ... | Finds the public ip address for a given ip address string. | [
"Finds",
"the",
"public",
"ip",
"address",
"for",
"a",
"given",
"ip",
"address",
"string",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L713-L721 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.associate_ip_address | def associate_ip_address(zone_id, networks)
params = {
'command' => 'associateIpAddress',
'zoneId' => zone_id
}
#Choose the first network from the list
if networks.nil? || networks.empty?
default_network = get_default_network(zone_id)
params['networkId'] = def... | ruby | def associate_ip_address(zone_id, networks)
params = {
'command' => 'associateIpAddress',
'zoneId' => zone_id
}
#Choose the first network from the list
if networks.nil? || networks.empty?
default_network = get_default_network(zone_id)
params['networkId'] = def... | [
"def",
"associate_ip_address",
"(",
"zone_id",
",",
"networks",
")",
"params",
"=",
"{",
"'command'",
"=>",
"'associateIpAddress'",
",",
"'zoneId'",
"=>",
"zone_id",
"}",
"if",
"networks",
".",
"nil?",
"||",
"networks",
".",
"empty?",
"default_network",
"=",
"... | Acquires and associates a public IP to an account. | [
"Acquires",
"and",
"associates",
"a",
"public",
"IP",
"to",
"an",
"account",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L733-L748 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.list_port_forwarding_rules | def list_port_forwarding_rules(ip_address_id=nil, listall=false)
params = { 'command' => 'listPortForwardingRules' }
params['ipAddressId'] = ip_address_id if ip_address_id
params['listall'] = listall
json = send_request(params)
json['portforwardingrule']
end | ruby | def list_port_forwarding_rules(ip_address_id=nil, listall=false)
params = { 'command' => 'listPortForwardingRules' }
params['ipAddressId'] = ip_address_id if ip_address_id
params['listall'] = listall
json = send_request(params)
json['portforwardingrule']
end | [
"def",
"list_port_forwarding_rules",
"(",
"ip_address_id",
"=",
"nil",
",",
"listall",
"=",
"false",
")",
"params",
"=",
"{",
"'command'",
"=>",
"'listPortForwardingRules'",
"}",
"params",
"[",
"'ipAddressId'",
"]",
"=",
"ip_address_id",
"if",
"ip_address_id",
"pa... | Lists all port forwarding rules. | [
"Lists",
"all",
"port",
"forwarding",
"rules",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L819-L825 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.get_ssh_port_forwarding_rule | def get_ssh_port_forwarding_rule(server, cached_rules=nil)
rules = cached_rules || list_port_forwarding_rules || []
rules.find_all { |r|
r['virtualmachineid'] == server['id'] &&
r['privateport'] == '22'&&
r['publicport'] == '22'
}.first
end | ruby | def get_ssh_port_forwarding_rule(server, cached_rules=nil)
rules = cached_rules || list_port_forwarding_rules || []
rules.find_all { |r|
r['virtualmachineid'] == server['id'] &&
r['privateport'] == '22'&&
r['publicport'] == '22'
}.first
end | [
"def",
"get_ssh_port_forwarding_rule",
"(",
"server",
",",
"cached_rules",
"=",
"nil",
")",
"rules",
"=",
"cached_rules",
"||",
"list_port_forwarding_rules",
"||",
"[",
"]",
"rules",
".",
"find_all",
"{",
"|",
"r",
"|",
"r",
"[",
"'virtualmachineid'",
"]",
"==... | Gets the SSH port forwarding rule for the specified server. | [
"Gets",
"the",
"SSH",
"port",
"forwarding",
"rule",
"for",
"the",
"specified",
"server",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L830-L837 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.get_winrm_port_forwarding_rule | def get_winrm_port_forwarding_rule(server, cached_rules=nil)
rules = cached_rules || list_port_forwarding_rules || []
rules.find_all { |r|
r['virtualmachineid'] == server['id'] &&
(r['privateport'] == '5985' &&
r['publicport'] == '5985') ||
(r['privateport'] == '598... | ruby | def get_winrm_port_forwarding_rule(server, cached_rules=nil)
rules = cached_rules || list_port_forwarding_rules || []
rules.find_all { |r|
r['virtualmachineid'] == server['id'] &&
(r['privateport'] == '5985' &&
r['publicport'] == '5985') ||
(r['privateport'] == '598... | [
"def",
"get_winrm_port_forwarding_rule",
"(",
"server",
",",
"cached_rules",
"=",
"nil",
")",
"rules",
"=",
"cached_rules",
"||",
"list_port_forwarding_rules",
"||",
"[",
"]",
"rules",
".",
"find_all",
"{",
"|",
"r",
"|",
"r",
"[",
"'virtualmachineid'",
"]",
"... | Gets the WINRM port forwarding rule for the specified server. | [
"Gets",
"the",
"WINRM",
"port",
"forwarding",
"rule",
"for",
"the",
"specified",
"server",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L842-L851 | train |
CloudStack-extras/knife-cloudstack | lib/knife-cloudstack/connection.rb | CloudstackClient.Connection.create_port_forwarding_rule | def create_port_forwarding_rule(ip_address_id, private_port, protocol, public_port, virtual_machine_id)
params = {
'command' => 'createPortForwardingRule',
'ipAddressId' => ip_address_id,
'privatePort' => private_port,
'protocol' => protocol,
'publicPort' => publi... | ruby | def create_port_forwarding_rule(ip_address_id, private_port, protocol, public_port, virtual_machine_id)
params = {
'command' => 'createPortForwardingRule',
'ipAddressId' => ip_address_id,
'privatePort' => private_port,
'protocol' => protocol,
'publicPort' => publi... | [
"def",
"create_port_forwarding_rule",
"(",
"ip_address_id",
",",
"private_port",
",",
"protocol",
",",
"public_port",
",",
"virtual_machine_id",
")",
"params",
"=",
"{",
"'command'",
"=>",
"'createPortForwardingRule'",
",",
"'ipAddressId'",
"=>",
"ip_address_id",
",",
... | Creates a port forwarding rule. | [
"Creates",
"a",
"port",
"forwarding",
"rule",
"."
] | 7fa996cabac740b8c29e7b0c84508134372823bd | https://github.com/CloudStack-extras/knife-cloudstack/blob/7fa996cabac740b8c29e7b0c84508134372823bd/lib/knife-cloudstack/connection.rb#L856-L867 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Utils.key_tos | def key_tos ch # -- {{{
x = $key_cache[ch]
return x if x
chr = case ch
when 10,13 , KEY_ENTER
"<CR>"
when 9
"<TAB>"
when 0
"<C-@>"
when 27
"<ESC>"
when 31
... | ruby | def key_tos ch # -- {{{
x = $key_cache[ch]
return x if x
chr = case ch
when 10,13 , KEY_ENTER
"<CR>"
when 9
"<TAB>"
when 0
"<C-@>"
when 27
"<ESC>"
when 31
... | [
"def",
"key_tos",
"ch",
"x",
"=",
"$key_cache",
"[",
"ch",
"]",
"return",
"x",
"if",
"x",
"chr",
"=",
"case",
"ch",
"when",
"10",
",",
"13",
",",
"KEY_ENTER",
"\"<CR>\"",
"when",
"9",
"\"<TAB>\"",
"when",
"0",
"\"<C-@>\"",
"when",
"27",
"\"<ESC>\"",
... | returns a string representation of a given int keycode
@param [Integer] keycode read by window
In some case, such as Meta/Alt codes, the window reads two ints, but still we are using the param
as the value returned by ?\M-a.getbyte(0) and such, which is typically 128 + key
@return [String] a string representa... | [
"returns",
"a",
"string",
"representation",
"of",
"a",
"given",
"int",
"keycode"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L188-L242 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Utils.get_color | def get_color default=$datacolor, color=color(), bgcolor=bgcolor()
return default if color.nil? || bgcolor.nil?
#raise ArgumentError, "Color not valid: #{color}: #{ColorMap.colors} " if !ColorMap.is_color? color
#raise ArgumentError, "Bgolor not valid: #{bgcolor} : #{ColorMap.colors} " if !Color... | ruby | def get_color default=$datacolor, color=color(), bgcolor=bgcolor()
return default if color.nil? || bgcolor.nil?
#raise ArgumentError, "Color not valid: #{color}: #{ColorMap.colors} " if !ColorMap.is_color? color
#raise ArgumentError, "Bgolor not valid: #{bgcolor} : #{ColorMap.colors} " if !Color... | [
"def",
"get_color",
"default",
"=",
"$datacolor",
",",
"color",
"=",
"color",
"(",
")",
",",
"bgcolor",
"=",
"bgcolor",
"(",
")",
"return",
"default",
"if",
"color",
".",
"nil?",
"||",
"bgcolor",
".",
"nil?",
"acolor",
"=",
"ColorMap",
".",
"get_color",
... | }}}
if passed a string in second or third param, will create a color
and return, else it will return default color
Use this in order to create a color pair with the colors
provided, however, if user has not provided, use supplied
default.
@param [Integer] color_pair created by ncurses
@param [Symbol] color name ... | [
"}}}",
"if",
"passed",
"a",
"string",
"in",
"second",
"or",
"third",
"param",
"will",
"create",
"a",
"color",
"and",
"return",
"else",
"it",
"will",
"return",
"default",
"color",
"Use",
"this",
"in",
"order",
"to",
"create",
"a",
"color",
"pair",
"with",... | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L321-L327 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Utils.print_key_bindings | def print_key_bindings *args
f = get_current_field
#labels = [@key_label, f.key_label]
#labels = [@key_label]
#labels << f.key_label if f.key_label
labels = []
labels << (f.key_label || {}) #if f.key_label
labels << @key_label
arr = []
... | ruby | def print_key_bindings *args
f = get_current_field
#labels = [@key_label, f.key_label]
#labels = [@key_label]
#labels << f.key_label if f.key_label
labels = []
labels << (f.key_label || {}) #if f.key_label
labels << @key_label
arr = []
... | [
"def",
"print_key_bindings",
"*",
"args",
"f",
"=",
"get_current_field",
"labels",
"=",
"[",
"]",
"labels",
"<<",
"(",
"f",
".",
"key_label",
"||",
"{",
"}",
")",
"labels",
"<<",
"@key_label",
"arr",
"=",
"[",
"]",
"if",
"get_current_field",
".",
"help_t... | Display key bindings for current widget and form in dialog | [
"Display",
"key",
"bindings",
"for",
"current",
"widget",
"and",
"form",
"in",
"dialog"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L714-L753 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Utils.view | def view what, config={}, &block # :yields: textview for further configuration
require 'canis/core/util/viewer'
Canis::Viewer.view what, config, &block
end | ruby | def view what, config={}, &block # :yields: textview for further configuration
require 'canis/core/util/viewer'
Canis::Viewer.view what, config, &block
end | [
"def",
"view",
"what",
",",
"config",
"=",
"{",
"}",
",",
"&",
"block",
"require",
"'canis/core/util/viewer'",
"Canis",
"::",
"Viewer",
".",
"view",
"what",
",",
"config",
",",
"&",
"block",
"end"
] | view a file or array of strings | [
"view",
"a",
"file",
"or",
"array",
"of",
"strings"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L904-L907 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Utils.create_logger | def create_logger path
#path = File.join(ENV["LOGDIR"] || "./" ,"canis14.log")
_path = File.open(path, File::WRONLY|File::TRUNC|File::CREAT)
logg = Logger.new(_path)
raise "Could not create logger: #{path}" unless logg
# if not set, will default to 0 which is debug. Other valu... | ruby | def create_logger path
#path = File.join(ENV["LOGDIR"] || "./" ,"canis14.log")
_path = File.open(path, File::WRONLY|File::TRUNC|File::CREAT)
logg = Logger.new(_path)
raise "Could not create logger: #{path}" unless logg
# if not set, will default to 0 which is debug. Other valu... | [
"def",
"create_logger",
"path",
"_path",
"=",
"File",
".",
"open",
"(",
"path",
",",
"File",
"::",
"WRONLY",
"|",
"File",
"::",
"TRUNC",
"|",
"File",
"::",
"CREAT",
")",
"logg",
"=",
"Logger",
".",
"new",
"(",
"_path",
")",
"raise",
"\"Could not create... | create a logger giving a path. | [
"create",
"a",
"logger",
"giving",
"a",
"path",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L909-L919 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.EventHandler.fire_property_change | def fire_property_change text, oldvalue, newvalue
return if @_object_created.nil? # 2018-05-15 - removed check for nil, as object can be nil on creation
# but set later.
#$log.debug " FPC #{self}: #{text} #{oldvalue}, #{newvalue}"
$log.debug " FPC #{self}... | ruby | def fire_property_change text, oldvalue, newvalue
return if @_object_created.nil? # 2018-05-15 - removed check for nil, as object can be nil on creation
# but set later.
#$log.debug " FPC #{self}: #{text} #{oldvalue}, #{newvalue}"
$log.debug " FPC #{self}... | [
"def",
"fire_property_change",
"text",
",",
"oldvalue",
",",
"newvalue",
"return",
"if",
"@_object_created",
".",
"nil?",
"$log",
".",
"debug",
"\" FPC #{self}: #{text} \"",
"if",
"@pce",
".",
"nil?",
"@pce",
"=",
"PropertyChangeEvent",
".",
"new",
"(",
"self",
... | goes with dsl_property
Can throw a FieldValidationException or PropertyVetoException | [
"goes",
"with",
"dsl_property",
"Can",
"throw",
"a",
"FieldValidationException",
"or",
"PropertyVetoException"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L1027-L1040 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Widget.property_set | def property_set sym, val
oldvalue = instance_variable_get "@#{sym}"
tmp = val.size == 1 ? val[0] : val
newvalue = tmp
if oldvalue.nil? || @_object_created.nil?
#@#{sym} = tmp
instance_variable_set "@#{sym}", tmp
end
return(self) if oldvalue.nil? || @_object_created.n... | ruby | def property_set sym, val
oldvalue = instance_variable_get "@#{sym}"
tmp = val.size == 1 ? val[0] : val
newvalue = tmp
if oldvalue.nil? || @_object_created.nil?
#@#{sym} = tmp
instance_variable_set "@#{sym}", tmp
end
return(self) if oldvalue.nil? || @_object_created.n... | [
"def",
"property_set",
"sym",
",",
"val",
"oldvalue",
"=",
"instance_variable_get",
"\"@#{sym}\"",
"tmp",
"=",
"val",
".",
"size",
"==",
"1",
"?",
"val",
"[",
"0",
"]",
":",
"val",
"newvalue",
"=",
"tmp",
"if",
"oldvalue",
".",
"nil?",
"||",
"@_object_cr... | this is supposed to be a duplicate of what dsl_property generates for cases when
we need to customise the get portion but not copy the set part. just call this. | [
"this",
"is",
"supposed",
"to",
"be",
"a",
"duplicate",
"of",
"what",
"dsl_property",
"generates",
"for",
"cases",
"when",
"we",
"need",
"to",
"customise",
"the",
"get",
"portion",
"but",
"not",
"copy",
"the",
"set",
"part",
".",
"just",
"call",
"this",
... | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L1172-L1195 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Widget.repaint | def repaint
r,c = rowcol
#@bgcolor ||= $def_bg_color # moved down 2011-11-5
#@color ||= $def_fg_color
_bgcolor = bgcolor()
_color = color()
$log.debug("widget repaint : r:#{r} c:#{c} col:#{_color}" )
value = getvalue_for_paint
len = @width || value.leng... | ruby | def repaint
r,c = rowcol
#@bgcolor ||= $def_bg_color # moved down 2011-11-5
#@color ||= $def_fg_color
_bgcolor = bgcolor()
_color = color()
$log.debug("widget repaint : r:#{r} c:#{c} col:#{_color}" )
value = getvalue_for_paint
len = @width || value.leng... | [
"def",
"repaint",
"r",
",",
"c",
"=",
"rowcol",
"_bgcolor",
"=",
"bgcolor",
"(",
")",
"_color",
"=",
"color",
"(",
")",
"$log",
".",
"debug",
"(",
"\"widget repaint : r:#{r} c:#{c} col:#{_color}\"",
")",
"value",
"=",
"getvalue_for_paint",
"len",
"=",
"@width"... | default repaint method. Called by form for all widgets.
widget does not have display_length. | [
"default",
"repaint",
"method",
".",
"Called",
"by",
"form",
"for",
"all",
"widgets",
".",
"widget",
"does",
"not",
"have",
"display_length",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L1274-L1287 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Widget.set_form | def set_form form
raise "Form is nil in set_form" if form.nil?
@form = form
@id = form.add_widget(self) if !form.nil? and form.respond_to? :add_widget
# 2009-10-29 15:04 use form.window, unless buffer created
# should not use form.window so explicitly everywhere.
# added 2009-12-27 2... | ruby | def set_form form
raise "Form is nil in set_form" if form.nil?
@form = form
@id = form.add_widget(self) if !form.nil? and form.respond_to? :add_widget
# 2009-10-29 15:04 use form.window, unless buffer created
# should not use form.window so explicitly everywhere.
# added 2009-12-27 2... | [
"def",
"set_form",
"form",
"raise",
"\"Form is nil in set_form\"",
"if",
"form",
".",
"nil?",
"@form",
"=",
"form",
"@id",
"=",
"form",
".",
"add_widget",
"(",
"self",
")",
"if",
"!",
"form",
".",
"nil?",
"and",
"form",
".",
"respond_to?",
":add_widget",
"... | in those cases where we create widget without a form, and later give it to
some other program which sets the form. Dirty, we should perhaps create widgets
without forms, and add explicitly. | [
"in",
"those",
"cases",
"where",
"we",
"create",
"widget",
"without",
"a",
"form",
"and",
"later",
"give",
"it",
"to",
"some",
"other",
"program",
"which",
"sets",
"the",
"form",
".",
"Dirty",
"we",
"should",
"perhaps",
"create",
"widgets",
"without",
"for... | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L1298-L1313 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Widget.color_pair | def color_pair(*val)
if val.empty?
#return @color_pair
return @color_pair || get_color($datacolor, color(), bgcolor())
end
oldvalue = @color_pair
case val.size
when 1
raise ArgumentError, "Expecting fixnum for color_pair." unless val[0].is_a? Integer
... | ruby | def color_pair(*val)
if val.empty?
#return @color_pair
return @color_pair || get_color($datacolor, color(), bgcolor())
end
oldvalue = @color_pair
case val.size
when 1
raise ArgumentError, "Expecting fixnum for color_pair." unless val[0].is_a? Integer
... | [
"def",
"color_pair",
"(",
"*",
"val",
")",
"if",
"val",
".",
"empty?",
"return",
"@color_pair",
"||",
"get_color",
"(",
"$datacolor",
",",
"color",
"(",
")",
",",
"bgcolor",
"(",
")",
")",
"end",
"oldvalue",
"=",
"@color_pair",
"case",
"val",
".",
"siz... | returns array of events defined for this object
@deprecated, should be in eventhandler
def event_list
return @_events if defined? @_events
nil
end
2011-11-12 trying to make color setting a bit sane
You may set as a color_pair using get_color which gives a fixnum
or you may give 2 color symbols so i can update color... | [
"returns",
"array",
"of",
"events",
"defined",
"for",
"this",
"object"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L1472-L1495 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Widget.command | def command *args, &block
if event? :PRESS
bind :PRESS, *args, &block
else
bind :CHANGED, *args, &block
end
end | ruby | def command *args, &block
if event? :PRESS
bind :PRESS, *args, &block
else
bind :CHANGED, *args, &block
end
end | [
"def",
"command",
"*",
"args",
",",
"&",
"block",
"if",
"event?",
":PRESS",
"bind",
":PRESS",
",",
"*",
"args",
",",
"&",
"block",
"else",
"bind",
":CHANGED",
",",
"*",
"args",
",",
"&",
"block",
"end",
"end"
] | a general method for all widgets to override with their favorite or most meaninful event
Ideally this is where the block in the constructor should land up.
@since 1.5.0 2011-11-21 | [
"a",
"general",
"method",
"for",
"all",
"widgets",
"to",
"override",
"with",
"their",
"favorite",
"or",
"most",
"meaninful",
"event",
"Ideally",
"this",
"is",
"where",
"the",
"block",
"in",
"the",
"constructor",
"should",
"land",
"up",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L1499-L1505 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Form.set_menu_bar | def set_menu_bar mb
@menu_bar = mb
add_widget mb
mb.toggle_key ||= Ncurses.KEY_F2
if !mb.toggle_key.nil?
ch = mb.toggle_key
bind_key(ch, 'Menu Bar') do |_form|
if !@menu_bar.nil?
@menu_bar.toggle
@menu_bar.handle_keys
end
end
... | ruby | def set_menu_bar mb
@menu_bar = mb
add_widget mb
mb.toggle_key ||= Ncurses.KEY_F2
if !mb.toggle_key.nil?
ch = mb.toggle_key
bind_key(ch, 'Menu Bar') do |_form|
if !@menu_bar.nil?
@menu_bar.toggle
@menu_bar.handle_keys
end
end
... | [
"def",
"set_menu_bar",
"mb",
"@menu_bar",
"=",
"mb",
"add_widget",
"mb",
"mb",
".",
"toggle_key",
"||=",
"Ncurses",
".",
"KEY_F2",
"if",
"!",
"mb",
".",
"toggle_key",
".",
"nil?",
"ch",
"=",
"mb",
".",
"toggle_key",
"bind_key",
"(",
"ch",
",",
"'Menu Bar... | set this menubar as the form's menu bar.
also bind the toggle_key for popping up.
Should this not be at application level ? | [
"set",
"this",
"menubar",
"as",
"the",
"form",
"s",
"menu",
"bar",
".",
"also",
"bind",
"the",
"toggle_key",
"for",
"popping",
"up",
".",
"Should",
"this",
"not",
"be",
"at",
"application",
"level",
"?"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L1616-L1629 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Form.repaint | def repaint
$log.debug " form repaint:#{self}, #{@name} , r #{@row} c #{@col} " if $log.debug?
if @resize_required && @layout_manager
@layout_manager.form = self unless @layout_manager.form
@layout_manager.do_layout
@resize_required = false
end
@widgets.each do |f|
... | ruby | def repaint
$log.debug " form repaint:#{self}, #{@name} , r #{@row} c #{@col} " if $log.debug?
if @resize_required && @layout_manager
@layout_manager.form = self unless @layout_manager.form
@layout_manager.do_layout
@resize_required = false
end
@widgets.each do |f|
... | [
"def",
"repaint",
"$log",
".",
"debug",
"\" form repaint:#{self}, #{@name} , r #{@row} c #{@col} \"",
"if",
"$log",
".",
"debug?",
"if",
"@resize_required",
"&&",
"@layout_manager",
"@layout_manager",
".",
"form",
"=",
"self",
"unless",
"@layout_manager",
".",
"form",
"... | form repaint,calls repaint on each widget which will repaint it only if it has been modified since last call.
called after each keypress. | [
"form",
"repaint",
"calls",
"repaint",
"on",
"each",
"widget",
"which",
"will",
"repaint",
"it",
"only",
"if",
"it",
"has",
"been",
"modified",
"since",
"last",
"call",
".",
"called",
"after",
"each",
"keypress",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L1676-L1709 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Form.setpos | def setpos r=@row, c=@col
#$log.debug "setpos : (#{self.name}) #{r} #{c} XXX"
## adding just in case things are going out of bounds of a parent and no cursor to be shown
return if r.nil? or c.nil? # added 2009-12-29 23:28 BUFFERED
return if r<0 or c<0 # added 2010-01-02 18:49 stack too deep co... | ruby | def setpos r=@row, c=@col
#$log.debug "setpos : (#{self.name}) #{r} #{c} XXX"
## adding just in case things are going out of bounds of a parent and no cursor to be shown
return if r.nil? or c.nil? # added 2009-12-29 23:28 BUFFERED
return if r<0 or c<0 # added 2010-01-02 18:49 stack too deep co... | [
"def",
"setpos",
"r",
"=",
"@row",
",",
"c",
"=",
"@col",
"return",
"if",
"r",
".",
"nil?",
"or",
"c",
".",
"nil?",
"return",
"if",
"r",
"<",
"0",
"or",
"c",
"<",
"0",
"@window",
".",
"wmove",
"r",
",",
"c",
"end"
] | move cursor to where the fields row and col are
private | [
"move",
"cursor",
"to",
"where",
"the",
"fields",
"row",
"and",
"col",
"are",
"private"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L1713-L1719 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Form.on_leave | def on_leave f
return if f.nil? || !f.focusable # added focusable, else label was firing
f.state = :NORMAL
# on leaving update text_variable if defined. Should happen on modified only
# should this not be f.text_var ... f.buffer ? 2008-11-25 18:58
#f.text_variable.value = f.buffer if !f.... | ruby | def on_leave f
return if f.nil? || !f.focusable # added focusable, else label was firing
f.state = :NORMAL
# on leaving update text_variable if defined. Should happen on modified only
# should this not be f.text_var ... f.buffer ? 2008-11-25 18:58
#f.text_variable.value = f.buffer if !f.... | [
"def",
"on_leave",
"f",
"return",
"if",
"f",
".",
"nil?",
"||",
"!",
"f",
".",
"focusable",
"f",
".",
"state",
"=",
":NORMAL",
"f",
".",
"on_leave",
"if",
"f",
".",
"respond_to?",
":on_leave",
"if",
"f",
".",
"respond_to?",
":editable",
"and",
"f",
"... | do not override
form's trigger, fired when any widget loses focus
This wont get called in editor components in tables, since they are formless | [
"do",
"not",
"override",
"form",
"s",
"trigger",
"fired",
"when",
"any",
"widget",
"loses",
"focus",
"This",
"wont",
"get",
"called",
"in",
"editor",
"components",
"in",
"tables",
"since",
"they",
"are",
"formless"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L1765-L1779 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Form.on_enter | def on_enter f
return if f.nil? || !f.focusable # added focusable, else label was firing 2010-09
f.state = :HIGHLIGHTED
# If the widget has a color defined for focussed, set repaint
# otherwise it will not be repainted unless user edits !
if f.highlight_bgcolor || f.highlight_color
... | ruby | def on_enter f
return if f.nil? || !f.focusable # added focusable, else label was firing 2010-09
f.state = :HIGHLIGHTED
# If the widget has a color defined for focussed, set repaint
# otherwise it will not be repainted unless user edits !
if f.highlight_bgcolor || f.highlight_color
... | [
"def",
"on_enter",
"f",
"return",
"if",
"f",
".",
"nil?",
"||",
"!",
"f",
".",
"focusable",
"f",
".",
"state",
"=",
":HIGHLIGHTED",
"if",
"f",
".",
"highlight_bgcolor",
"||",
"f",
".",
"highlight_color",
"f",
".",
"repaint_required",
"true",
"end",
"f",
... | form calls on_enter of each object.
However, if a multicomponent calls on_enter of a widget, this code will
not be triggered. The highlighted part | [
"form",
"calls",
"on_enter",
"of",
"each",
"object",
".",
"However",
"if",
"a",
"multicomponent",
"calls",
"on_enter",
"of",
"a",
"widget",
"this",
"code",
"will",
"not",
"be",
"triggered",
".",
"The",
"highlighted",
"part"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L1783-L1798 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Form.map_keys | def map_keys
return if @keys_mapped
bind_key(KEY_F1, 'help') { hm = help_manager(); hm.display_help }
bind_keys([?\M-?,?\?], 'show field help') {
#if get_current_field.help_text
#textdialog(get_current_field.help_text, 'title' => 'Help Text', :bgcolor => 'green', :color => :white)
#el... | ruby | def map_keys
return if @keys_mapped
bind_key(KEY_F1, 'help') { hm = help_manager(); hm.display_help }
bind_keys([?\M-?,?\?], 'show field help') {
#if get_current_field.help_text
#textdialog(get_current_field.help_text, 'title' => 'Help Text', :bgcolor => 'green', :color => :white)
#el... | [
"def",
"map_keys",
"return",
"if",
"@keys_mapped",
"bind_key",
"(",
"KEY_F1",
",",
"'help'",
")",
"{",
"hm",
"=",
"help_manager",
"(",
")",
";",
"hm",
".",
"display_help",
"}",
"bind_keys",
"(",
"[",
"?\\M-?",
",",
"?\\?",
"]",
",",
"'show field help'",
... | These mappings will only trigger if the current field
does not use them. | [
"These",
"mappings",
"will",
"only",
"trigger",
"if",
"the",
"current",
"field",
"does",
"not",
"use",
"them",
"."
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L2063-L2081 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Field._set_buffer | def _set_buffer value #:nodoc:
@repaint_required = true
@datatype = value.class
@delete_buffer = @buffer.dup
@buffer = value.to_s.dup
# don't allow setting of value greater than maxlen
@buffer = @buffer[0,@maxlen] if @maxlen && @buffer.length > @maxlen
@curpos = 0
# hop... | ruby | def _set_buffer value #:nodoc:
@repaint_required = true
@datatype = value.class
@delete_buffer = @buffer.dup
@buffer = value.to_s.dup
# don't allow setting of value greater than maxlen
@buffer = @buffer[0,@maxlen] if @maxlen && @buffer.length > @maxlen
@curpos = 0
# hop... | [
"def",
"_set_buffer",
"value",
"@repaint_required",
"=",
"true",
"@datatype",
"=",
"value",
".",
"class",
"@delete_buffer",
"=",
"@buffer",
".",
"dup",
"@buffer",
"=",
"value",
".",
"to_s",
".",
"dup",
"@buffer",
"=",
"@buffer",
"[",
"0",
",",
"@maxlen",
"... | set value of Field
fires CHANGE handler
Please don't use this directly, use +text+
This name is from ncurses field, added underscore to emphasize not to use | [
"set",
"value",
"of",
"Field",
"fires",
"CHANGE",
"handler",
"Please",
"don",
"t",
"use",
"this",
"directly",
"use",
"+",
"text",
"+",
"This",
"name",
"is",
"from",
"ncurses",
"field",
"added",
"underscore",
"to",
"emphasize",
"not",
"to",
"use"
] | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L2441-L2453 | train |
mare-imbrium/canis | lib/canis/core/widgets/rwidget.rb | Canis.Field.set_label | def set_label label
# added case for user just using a string
case label
when String
# what if no form at this point
@label_unattached = true unless @form
label = Label.new @form, {:text => label}
end
@label = label
# in the case of app it won't be set yet FIX... | ruby | def set_label label
# added case for user just using a string
case label
when String
# what if no form at this point
@label_unattached = true unless @form
label = Label.new @form, {:text => label}
end
@label = label
# in the case of app it won't be set yet FIX... | [
"def",
"set_label",
"label",
"case",
"label",
"when",
"String",
"@label_unattached",
"=",
"true",
"unless",
"@form",
"label",
"=",
"Label",
".",
"new",
"@form",
",",
"{",
":text",
"=>",
"label",
"}",
"end",
"@label",
"=",
"label",
"if",
"@row",
"position_l... | create a label linked to this field
Typically one passes a Label, but now we can pass just a String, a label
is created. This differs from +label+ in positioning. The +Field+ is printed on
+row+ and +col+ and the label before it. Thus, all fields are aligned on column,
however you must leave adequate columns for th... | [
"create",
"a",
"label",
"linked",
"to",
"this",
"field",
"Typically",
"one",
"passes",
"a",
"Label",
"but",
"now",
"we",
"can",
"pass",
"just",
"a",
"String",
"a",
"label",
"is",
"created",
".",
"This",
"differs",
"from",
"+",
"label",
"+",
"in",
"posi... | 8bce60ff9dad321e299a6124620deb4771740b0b | https://github.com/mare-imbrium/canis/blob/8bce60ff9dad321e299a6124620deb4771740b0b/lib/canis/core/widgets/rwidget.rb#L2481-L2499 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.