search for: dtend

Displaying 11 results from an estimated 11 matches for "dtend".

Did you mean: tend
2008 Sep 04
1
Timezone support?
...puts "Processing event #{vp.summary}" puts " icalendar dtstart: #{ic.dtstart} datetime" puts " vpim dtstart: #{DateTime.parse(vp.dtstart.to_s)}" puts " #{vp.dtstart}" puts puts " icalendar dtend: #{ic.dtend} #{ic.dtend.class}" puts " vpim dtend: #{DateTime.parse(vp.dtend.to_s)}" puts " #{vp.dtend}" puts puts end And here''s an edited icalendar file exported from ical.app (I''ve stripped...
2008 Feb 27
2
All Day Events
...ay calendar event. In most clients it shows up as an entry at the top of the day rather than blocking out the whole day with an event. I have a bit of code that looks like this... cal.event do dtstart DateTime.parse("#{startDate.year()}-#{startDate.month()}-#{startDate.day()}") dtend DateTime.parse("#{startDate.year()}-#{startDate.month()}-#{startDate.day()+1}") end The ICAL entry from this looks like... DTSTART: 20080114T000000 DTEND: 20080115T000000 I also tried it in the format from the README cal.event do dtstart Date.nnew(2008, 01, 14) dtend...
2007 Feb 07
2
How to set TZID in DTSTART?
...evaluating the vpim libraries and like them very much. However there''s one thing I can''t get done: How can I set the TZID parameter for DTSTART/END dates so my encoded ICS file looks something like this: BEGIN:VEVENT ... DTSTART;TZID=Eastern Time:20071201T080000 DTEND;TZID=Eastern Time:20071207T110000 ... END:VEVENT I managed to create the VTIMEZONE object, but that only sets up the time-zone itself for reference. To actually use it, I need the TZID thing. UTC does not help me much ''caus I still need to tell the calendar in which time-zone...
2006 Aug 03
1
Markdown and the hCal microformat
...> </div> <div class="vcalendar"><span class="vevent"> <span class="summary">World Cup game</span> <abbr class="dtstart" title="10am">10am</abbr></span> - <abbr class="dtend" title="2pm">2pm</abbr></span> </div> (Note the date titles should be ISO standard dates*). I'm interested in hearing feedback about whether or not this is a direction Markdown should go, as well as suggestions for improving the syntax, which I think co...
2013 Mar 15
2
Icalendar.Parse(StringIO.new(aString)) complains about missing method, bytesize
...lendar.parse(invite) for each in cals do for eachEvent in each.events do puts eachEvent.summary puts eachEvent.description puts eachEvent.location puts eachEvent.status puts eachEvent.dtstart puts eachEvent.dtend puts eachEvent.organizer for eachAttendee in eachEvent.attendees do puts eachAttendee.to end end end end
2013 Aug 20
1
res_calendar / ownCloud
...ODID:ownCloud Calendar&#13; BEGIN:VEVENT&#13; CREATED;VALUE=DATE-TIME:20130820T200233Z&#13; UID:87e47fc65a&#13; LAST-MODIFIED;VALUE=DATE-TIME:20130820T200233Z&#13; DTSTAMP;VALUE=DATE-TIME:20130820T200233Z&#13; SUMMARY:SACKHUEPFEN&#13; DTSTART;VALUE=DATE:20130820&#13; DTEND;VALUE=DATE:20130826&#13; CLASS:PUBLIC&#13; END:VEVENT&#13; END:VCALENDAR&#13; </cal:calendar-data></d:prop><d:status>HTTP/1.1 200 OK</d:status></d:propstat></d:response><d:response> <d:href>/remote.php/caldav/calendars/9e681f76-d67d-1...
2008 Dec 30
3
integration of tzinfo with icalendar
...e.new(2008, 12, 29, 11, 0, 0) tstring = "America/Chicago" tz = TZInfo::Timezone.get(tstring) cal = Calendar.new # generate timezone recurrence rules guaranteed to work for this # start date timezone = tz.ical_timezone(estart) cal.add(timezone) cal.event do dtstart estart dtend eend summary "Meeting with the man." description "Have a long lunch meeting and decide nothing..." klass "PRIVATE" end The recurrence rule generation is a little hacky, I didn''t reverse out all the recurrence relations from tzinfo...
2012 Nov 07
0
RODBC to MS SQL Server update error
...quot;update ComDetailCurrent set RateTypeId=1 where RateTypeId is null;") [1] "[RODBC] ERROR: Could not SQLExecDirect 'update ComDetailCurrent set RateTypeId=1 where RateTypeId is null;'" On the other hand with MySQL > sqlQuery(mys,"update rate_hist set val=5.0 where dtend<'1986-05-01'") [1] "No Data" Please, try to update a table on SQL server and give it a where condition such that zero rows will be updated. And post the result on this forum :-) Thanks everybody and have a great day. Stephen B
2007 Jan 08
1
delete a file from the server
...w+") f.syswrite("BEGIN:VCALENDAR\n") f.syswrite("PRODID:-//Microsoft Corporation//Outlook MIMEDIR//EN\n") f.syswrite("VERSION:1.0\n") f.syswrite("BEGIN:VEVENT\n") f.syswrite("DTSTART:20070105T210000Z\n") f.syswrite("DTEND:20070105T230000Z\n") f.syswrite("LOCATION:My office\n") f.syswrite("CATEGORIES:Business\n") f.syswrite("DESCRIPTION;ENCODING=QUOTED-PRINTABLE:This is a note associated with the meeting\n") f.syswrite("SUMMARY;ENCODING=QUOTED-PRINTABLE:Meeting...
2009 Jun 30
0
ri_cal 0.7.0 Released
...http://rick_denatale.lighthouseapp.com/projects/30941/tickets/8 ### 0.0.9 * Fixed http://rick_denatale.lighthouseapp.com/projects/30941/tickets/4 Missing comparison methods in PropertyValue::Date * Fixed http://rick_denatale.lighthouseapp.com/projects/30941/tickets/6 Type of dtstart and dtend (DATE or DATETIME) now preserved on enumeration ### 0.0.8 * Fixed http://rick_denatale.lighthouseapp.com/projects/30941-ri_cal/tickets/1 EXDATE and RDATE now pick up the timezone from DateTime, Time, and TimeWithZone values * Fixed http://rick_denatale.lighthouseapp.com/projects/30941/ticke...
2006 Apr 02
4
Field#to_text
We''re using Vpim to parse iCal and vCard files, and so far it''s been great. However, when we were parsing some iCal files we noticed that all the endlines in the description section were disappearing. I start peering through the source code and find (in the Field#to_text method that is being called): # The value as text. Text can have escaped newlines, commas, and escape #