class Utopia::Project::Base

def id_for(definition, suffix = nil)

@returns [String]
Compute a unique string which can be used as `id` attribute in the HTML output.
def id_for(definition, suffix = nil)
	if suffix
		"#{definition.qualified_name}-#{suffix}"
	else
		definition.qualified_name
	end
end