# File lib/vpim/agent/calendars.rb, line 159
      def get(path)
        case name = path.to_path.shift
        when nil
          list = ResourceList.new("Calendars:", @repo.map{|c| c.name})
          return list.get(path)
        else
          if cal = @repo.find{|c| c.name == name}
            return Calendar.new(cal).get(path)
          else
            raise NotFound.new(name, path)
          end
        end
      end