Do not use {INDEXABLE_ITERATION_CURSOR}.is_last since it is added from EiffelStudio v7.2

This commit is contained in:
Jocelyn Fiat
2012-11-23 18:04:21 +01:00
parent 66ac29b3fc
commit f817008bcd

View File

@@ -28,7 +28,7 @@ feature {NONE} -- Initialization
make_with_resource (req: WSF_REQUEST; a_router: WSF_ROUTER; a_resource: STRING) make_with_resource (req: WSF_REQUEST; a_router: WSF_ROUTER; a_resource: STRING)
-- Make Current for request `req' and router `a_router' -- Make Current for request `req' and router `a_router'
-- and use `a_resource' to also generate links to this documentation via `a_resource' -- and use `a_resource' to also generate links to this documentation via `a_resource'
--| note: it could be "/doc" or "/api/doc" or ... --| note: it could be "/doc" or "/api/doc" or ...
do do
make (req, a_router) make (req, a_router)
if a_resource /= Void and then attached a_router.base_url as l_base_url then if a_resource /= Void and then attached a_router.base_url as l_base_url then
@@ -205,21 +205,24 @@ feature {WSF_RESPONSE} -- Output
end end
end end
if meths /= Void then if meths /= Void then
s.append (" [ ") s.append (" [")
across across
meths as rq meths as rq
loop loop
s.append (" ")
if l_url /= Void and then rq.item.is_case_insensitive_equal ("GET") then if l_url /= Void and then rq.item.is_case_insensitive_equal ("GET") then
s.append ("<a href=%"" + l_base_url + l_url + "%">" + rq.item + "</a>") s.append ("<a href=%"" + l_base_url + l_url + "%">" + rq.item + "</a>")
else else
s.append (rq.item) s.append (rq.item)
end end
if not rq.is_last then s.append (",")
s.append (",")
end
s.append (" ")
end end
s.append ("]") if s[s.count] = ',' then
s.put (' ', s.count) -- Remove last ','
else
s.append_character (' ')
end
s.append_character (']')
end end
hdl := m.handler hdl := m.handler