various minor changes

This commit is contained in:
Jocelyn Fiat
2011-12-15 23:38:34 +01:00
parent 65a998cec3
commit 37860f43b5
2 changed files with 8 additions and 1 deletions

View File

@@ -35,7 +35,7 @@ feature -- Status report
s := args s := args
if s /= Void and then s.count > 0 then if s /= Void and then s.count > 0 then
create t.make_from_string (path) create t.make_from_string (path)
if s[1] /= '/' then if s[1] /= '/' and t[t.count] /= '/' then
t.append_character ('/') t.append_character ('/')
t.append (s) t.append (s)
else else

View File

@@ -74,6 +74,13 @@ feature {NONE} -- Initialization
end end
end end
create connector.make (Current) create connector.make (Current)
if attached connector as conn then
conn.set_base (base_url)
if single_threaded then
conn.configuration.set_force_single_threaded (True)
end
conn.configuration.set_is_verbose (verbose)
end
end end
feature -- Execution feature -- Execution