Displaying 18 results from an estimated 18 matches for "dtstart".
Did you mean:
tstart
2008 Sep 04
1
Timezone support?
.../Users/rick/Testing.ics") do | ical_file |
calendar = Vpim::Icalendar.decode(ical_file).first
vpim_events = calendar.events.to_a
end
icalendar_events.zip(vpim_events).each do |ic, vp |
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: #{Da...
2008 Feb 27
2
All Day Events
I must be stupid because this cannot be this hard.
I''m trying to build an all day 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...
2007 Feb 07
2
How to set TZID in DTSTART?
Hello all,
I am currently 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. T...
2008 Jan 08
0
Status of Timezone support / Handeling DTSTART; TZID="(GMT-05.00) Eastern Time (US & Canada)":20080107T123000
...llow me to do
that?
When I tried to parse an iCalendar input file started off with
something like this:
BEGIN:VCALENDAR
METHOD:REQUEST
PRODID:Microsoft CDO for Microsoft Exchange
VERSION:2.0
BEGIN:VTIMEZONE
TZID:(GMT-05.00) Eastern Time (US & Canada)
X-MICROSOFT-CDO-TZID:10
BEGIN:STANDARD
DTSTART:16010101T020000
TZOFFSETFROM:-0400
TZOFFSETTO:-0500
RRULE:FREQ=YEARLY;WKST=MO;INTERVAL=1;BYMONTH=11;BYDAY=1SU
END:STANDARD
BEGIN:DAYLIGHT
DTSTART:16010101T020000
TZOFFSETFROM:-0500
TZOFFSETTO:-0400
RRULE:FREQ=YEARLY;WKST=MO;INTERVAL=1;BYMONTH=3;BYDAY=2SU
END:DAYLIGHT
END:VTIMEZONE
BEGIN:VEVENT
DTST...
2019 Nov 12
0
[centos/centos.org] 01/02: Update calendar from yaml
...mode 100644
index 0000000..8555e4f
--- /dev/null
+++ b/content/community/irc-meetings.ical
@@ -0,0 +1,162 @@
+BEGIN:VCALENDAR
+VERSION:2.0
+PRODID:-//yaml2ical agendas//EN
+X-WR-CALDESC:Meeting schedule for the CentOS Project and SIGS
+X-WR-CALNAME:CentOS Meetings
+BEGIN:VEVENT
+SUMMARY:Atomic SIG
+DTSTART;VALUE=DATE-TIME:20191114T160000Z
+DURATION:PT1H
+RRULE:FREQ=WEEKLY
+DESCRIPTION:Project: Atomic SIG\nChair: Jason Brooks (jbrooks)\nDescript
+ ion: The SIG is working on several goals including shipping a minimal Cen
+ tOS Atomic Host that focuses on running Docker containers in production.\n
+...
2019 Nov 12
2
[centos/centos.org] branch master updated (63acd8a -> 908b8f4)
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository centos/centos.org.
from 63acd8a Update meeting schedule as per https://github.com/CentOS/Calendar/pull/29
new 0bbb052 Update calendar from yaml
new 908b8f4 Update ical file URL
The 2 revisions listed above as "new" are entirely new to this
2006 Aug 03
1
Markdown and the hCal microformat
...title @ location]
for example:
(23rd June 2002)[Big Meeting @ Room 200, Bldg 3]
(10am-2pm)[World Cup game]
becomes:
<div class="vcalendar"><span class="vevent">
<span class="summary">Big Meeting </span>
<abbr class="dtstart" title="23rd June 2002">23rd June 2002</
abbr></span>
<span class="location">Room 200, Bldg 3</span>
</div>
<div class="vcalendar"><span class="vevent">
<span class="summary"&g...
2013 Mar 15
2
Icalendar.Parse(StringIO.new(aString)) complains about missing method, bytesize
...s["ics"])
cals = Icalendar.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
2008 Aug 22
0
Question about Timezone In 1.0.2
.....
# Now, you can make timezones like this
cal = Calendar.new
cal.timezone do
timezone_id "America/Chicago"
daylight do
timezone_offset_from "-0600"
timezone_offset_to "-0500"
timezone_name "CDT"
dtstart "19700308TO20000"
add_recurrence_rule "FREQ=YEARLY;BYMONTH=3;BYDAY=2SU"
end
standard do
timezone_offset_from "-0500"
timezone_offset_to "-0600"
timezone_name "CST"
dtstart...
2013 Aug 20
1
res_calendar / ownCloud
...NDAR
VERSION:2.0
PRODID:ownCloud Calendar
BEGIN:VEVENT
CREATED;VALUE=DATE-TIME:20130820T200233Z
UID:87e47fc65a
LAST-MODIFIED;VALUE=DATE-TIME:20130820T200233Z
DTSTAMP;VALUE=DATE-TIME:20130820T200233Z
SUMMARY:SACKHUEPFEN
DTSTART;VALUE=DATE:20130820
DTEND;VALUE=DATE:20130826
CLASS:PUBLIC
END:VEVENT
END:VCALENDAR
</cal:calendar-data></d:prop><d:status>HTTP/1.1 200
OK</d:status></d:propstat></d:response><d:response>
<d:href>/remote.p...
2009 Jun 04
14
Gnome-login to osol DomU fails, refusing valid credentials
i''ve managed to get 2009.06 installed in a Xen DomU on Linux Dom0.
it''s currently ''up'' with a static IP, and i can successfully ssh into
the box as either root or ''myuser''.
all network/login settings seem to survive reboot.
i''ve set up for VNC to the DomU.
i can connect, and am at the Gnome login window. but, neither
2008 Dec 30
3
integration of tzinfo with icalendar
..., 8, 0, 0)
eend = DateTime.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 recurrenc...
2007 Jan 08
1
delete a file from the server
...f vcs
f = File.open("txt_name.vcs","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.sysw...
2009 Jun 30
0
ri_cal 0.7.0 Released
...10
* Fixed 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/3...
2006 May 22
2
[vpim] Some small rrule.rb changes
Quoting cosmin at speakeasy.net, on Sat, May 20, 2006 at 11:40:06AM -0700:
> I did some changes to the rrule.rb. I needed some getters/setters for
> each of the attributes from RRULE. Attached is the diff. If it makes
> sense to you to be included in the lib, please do so. If you think
> it''s worth to be included, I can add more validation to the setters.
I
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
#
2006 Feb 20
0
vpimd, a personal information server
...irthday
if bday
cal.push Vpim::Icalendar::Vevent.create_yearly(
card.birthday,
"Birthday for #{card[''fn''].strip}"
)
$stderr.puts "#{card[''fn'']} -> bday #{cal.events.last.dtstart}"
end
rescue
$stderr.puts $!
$stderr.puts $!.backtrace.join("\n")
end
end
end
resp.body = cal.encode
resp[''content-type''] = ''text/calendar''
# Is this necessary, or is it default?...
2009 Jul 22
109
Unable to Configure Xen Dom 0 in Jeremy''s PVOPS Kernel
Hi All,
I followed the instructions here at
http://bderzhavets.wordpress.com/2009/06/10/setup-fedora-11-pv-domu-at-xen-3-4-1-dom0-kernel-2-6-30-rc6-tip-on-top-of-fedora-11/
However, when I do a "make menuconfig", I cannot see any XEN related
configuration options. What am I missing?
Thank you.
Mr. Teo En Ming Dip(Mechatronics Engineering) BEng(Hons)(Mechanical
Engineering)