
Product
Introducing Pull Request Stories to Help Security Teams Track Supply Chain Risks
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
= Hierarchical Menu
Hierarchical menu, based on rubytree gem. Outputs html (other formats planned) with optional JavaScript show/hide.
== Example client code.
See +examples/example.rb+ and +examples/example.css+ in the distribution directory.
== Synopsis
require 'hmenu'
root = HMenu::Node.new('ROOT')
Simple example:
root.add_path('/aaa/bbb/ccc/eee', { # all keys are optional :name => 'test2', :href => '/xxx/yyy/2.html', :n => 10 :extra_class => 'my-css-class hmenu-selected' })
CSS class +hmenu-selected+ is special: it will be "opened" on startup by the "embedded" JavaScript code (see below).
The +:n+ key will be used to sort list items.
=== HTML list generator:
html_ul_simple = root.to_html_ul
=== Customize behavior
You can add any extra/custom information:
root.add_path('/aaa/bbb/ccc/ddd', { :name => 'test1', :href => '/xxx/yyy/zzz.html', :custom_info => Object.new })
And then match within a code block to ``mangle'' the output:
html_ul = root.to_html_ul do |node, output| # code block is optional! if node.content.respond_to? :[] and node.content[:custom_info].class == Object
output[:name] += ' (extra_info is just an Object)' # edit text
output[:extra_class] = 'hmenu-selected' # add a CSS class
output[:href] = nil # turn off hyperref
end
end
=== Style and JavaScript to show/hide: complete HTML output
Some Style (HMenu::CSS), and some JavaScript code (HMenu::JS) to show/hide submenus:
puts <<END # you may use a template system like ERB if you wish...
#{HMenu::CSS.out} #{File.read File.join HMenu::ROOTDIR, 'examples/example.css'} #{html_ul} END== Installation
gem install hierarchical_menu
== Author Copyright 2010 Guido De Rosa mailto:guido.derosa@vemarsas.it
=== License Same of {RubyTree}[http://rubytree.rubyforge.org/].
FAQs
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.