Skip to content

Commit 2f6ff58

Browse files
committed
adding additional feilds to item
1 parent ea81b10 commit 2f6ff58

File tree

2 files changed

+26
-7
lines changed

2 files changed

+26
-7
lines changed

lib/net/dav.rb

+3-4
Original file line numberDiff line numberDiff line change
@@ -489,8 +489,7 @@ def find(path, options = {})
489489
end
490490
end
491491
end
492-
end
493-
492+
end
494493
res = Item.new(self, uri, type, size, displayname, creationdate, lastmodified, ishidden, contenttype)
495494

496495
if type == :file then
@@ -526,6 +525,7 @@ def find(path, options = {})
526525
end
527526
end
528527
end
528+
end
529529

530530
# Change the base URL for use in handling relative paths
531531
def cd(url)
@@ -684,6 +684,5 @@ def verify_callback=(callback)
684684
def verify_server=(value)
685685
@handler.verify_server = value
686686
end
687-
688-
end
687+
end
689688
end

lib/net/dav/item.rb

+23-3
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,36 @@ class Item
1111
# Type of item - :directory or :file
1212
attr_reader :type
1313

14+
# display name
15+
attr_reader :displayname
16+
17+
# file/directory create date
18+
attr_reader :creationdate
19+
20+
# file/directory last modified time
21+
attr_reader :lastmodified
22+
23+
# is the file/directory hidden?
24+
attr_reader :ishidden
25+
26+
# mime type of file
27+
attr_reader :contenttype
28+
1429
# Synonym for uri
1530
def url
1631
@uri
1732
end
1833

19-
def initialize(dav, uri, type, size) #:nodoc:
34+
def initialize(dav, uri, type, size, displayname, creationdate, lastmodified, ishidden, contenttype) #:nodoc:
35+
@dav = dav
2036
@uri = uri
21-
@size = size.to_i rescue nil
2237
@type = type
23-
@dav = dav
38+
@size = size.to_i rescue nil
39+
@displayname = displayname
40+
@creationdate = creationdate
41+
@lastmodified = lastmodified
42+
@ishidden = ishidden
43+
@contenttype = contenttype
2444
end
2545

2646
# Get content from server if needed and return as string

0 commit comments

Comments
 (0)