Return live and dead properties for allprop

This commit is contained in:
Brandon Robins
2018-01-31 22:18:43 -06:00
parent 9f21799206
commit 714901023e
2 changed files with 12 additions and 1 deletions

View File

@@ -552,6 +552,10 @@ module Calligraphy
properties[node.name.to_sym] = node
end
(DAV_PROPERTY_METHODS - %w[allprop propname]).each do |property|
properties[property.to_sym] = send property, xml_node(property)
end
end
end