# File lib/cgikit.rb, line 1204
        def to_s
                str = @component + '.'
                if repetitions? then
                        @repetitions.each do | name, index |
                                str << "#{name}:#{index}."
                        end
                end
                str << @element if @element
                str.chop! if str =~ /\.$/
                str
        end