Class: TwistedCaldav::Request::ReportVEVENT
- Defined in:
- lib/twisted-caldav/request.rb
Instance Attribute Summary collapse
-
#tend ⇒ Object
Returns the value of attribute tend.
-
#tstart ⇒ Object
Returns the value of attribute tstart.
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(tstart = nil, tend = nil) ⇒ ReportVEVENT
constructor
A new instance of ReportVEVENT.
- #to_xml ⇒ Object
Constructor Details
#initialize(tstart = nil, tend = nil) ⇒ ReportVEVENT
Returns a new instance of ReportVEVENT.
37 38 39 40 41 |
# File 'lib/twisted-caldav/request.rb', line 37 def initialize( tstart=nil, tend=nil ) @tstart = tstart @tend = tend super() end |
Instance Attribute Details
#tend ⇒ Object
Returns the value of attribute tend.
35 36 37 |
# File 'lib/twisted-caldav/request.rb', line 35 def tend @tend end |
#tstart ⇒ Object
Returns the value of attribute tstart.
35 36 37 |
# File 'lib/twisted-caldav/request.rb', line 35 def tstart @tstart end |
Instance Method Details
#to_xml ⇒ Object
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/twisted-caldav/request.rb', line 43 def to_xml xml.c 'calendar-query'.intern, NAMESPACES do xml.d :prop do #xml.d :getetag xml.c 'calendar-data'.intern end xml.c :filter do xml.c 'comp-filter'.intern, :name=> 'VCALENDAR' do xml.c 'comp-filter'.intern, :name=> 'VEVENT' do xml.c 'time-range'.intern, :start=> "#{tstart}Z", :end=> "#{tend}Z" end end end end end |