# File lib/cgikit/context.rb, line 30
  def context_id( digit = false )
    if @contexts.empty? then
      ''
    elsif digit == true
      copied = @contexts.dup
      copied.pop
      copied.push(@counts.last)
      copied.join(SEPARATOR)
    else
      @contexts.join(SEPARATOR)
    end
  end