Sha256: 425456a4650a4f30e64d291b464a92aff3f46ad7f29312418c4fb1e95d717580
Contents?: true
Size: 1.36 KB
Versions: 6
Compression:
Stored size: 1.36 KB
Contents
module PathHelper helpers do # looking at zone path? def zone_path?( path ) path.split( "|" ).size == 1 end # looking at db path? def db_path?( path ) path.split( "|" ).size == 3 end # looking at cltn path? def cltn_path?( path ) path.split( "|" ).size == 4 end def reset_paths! session[:path_ids] = "home" session[:path_names] = "home" end def update_paths!( path_ids, path_names ) session[:path_ids] = path_ids session[:path_names] = path_names end # Pop paths 1 level def back_paths! path_ids = session[:path_ids] new_path_ids = path_ids.split( "|" ) new_path_ids.pop path_names = session[:path_names] new_path_names = path_names.split( "|" ) new_path_names.pop update_paths!( new_path_ids.join( "|" ), new_path_names.join( "|" ) ) end # compute title from path def title_for( path_names ) tokens = path_names.split( "|" ) buff = case tokens.size when 2 "zone" when 3 "database" else "collection" end db = tokens.size > 3 ? "<span class=\"ctx\">#{tokens[2]}</span>." : "" "<p class=\"ctx\" style=\"text-align:center;font-size:0.8em\">#{db}#{tokens.last}</p>" end end end
Version data entries
6 entries across 6 versions & 1 rubygems