Thomas Flemming

Results 7 comments of Thomas Flemming

+1 and the ability to switch through options using the tab key.

NavBar +1 The TabBar is excellent. NavBar would be awesome. IAnother idea is for all of us to take part to create a gallery with these widgets. Framer.js examples page...

The PROPDEL verb is not supported by Net::HTTP, so it will have to wait for now. http://ruby-doc.org/stdlib/libdoc/net/http/rdoc/classes/Net/HTTP.html

It's great to have a more complete set of operations in Net::DAV. I'll test it out.

Locking and unlocking is supported. In dav.rb "lock" is one of the supported verbs.

You have the latest release of net_dav. ``` require 'rubygems' require 'net/dav' require 'uri' dav = Net::DAV.new('http://www.example.com/') dav.credentials(ENV['DAVUSER'],ENV['DAVPASS']) uri = URI.parse('http://www.example.com/unlocked_file.txt') dav.lock(uri.path, "Owner") dav.unlock(uri.path, "opaquelocktoken:") ``` I recommend you add...