1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
|
# File 'lib/s3/s3_interface.rb', line 1289
def tagend(name)
case name
when 'ID'
if @xmlpath == 'AccessControlPolicy/Owner'
@result[:owner][:id] = @text
else
@current_grantee[:id] = @text
end
when 'DisplayName'
if @xmlpath == 'AccessControlPolicy/Owner'
@result[:owner][:display_name] = @text
else
@current_grantee[:display_name] = @text
end
when 'URI'
@current_grantee[:uri] = @text
when 'Permission'
@current_grantee[:permissions] = @text
when 'Grant'
@result[:grantees] << @current_grantee
end
end
|