Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
= 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
Unknown package
We found that hierarchical_menu demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.