Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add news entries #36

Merged
merged 6 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions _includes/breadcrumbs.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
<div id="breadcrumbs">
<a href="{{'/' | relative_url}}">Home</a>
{% assign crumbs = page.url | remove:'/index.html' | split: '/' %}
<a href="{{'/' | relative_url }}">Home</a>
{% if page.collection == 'posts' %}
{% comment %} News post-specific logic {% endcomment %}
{% assign news_link = '/news/' + page.categories.first | downcase | replace: ' ', '-' %}
/ <a href="{{news_link | relative_url}}">News</a>
/ <a href="{{news_link | relative_url}}">{{ page.categories.first }}</a>
/ {{ page.title }}
{% else %}
{% for crumb in crumbs offset: 1 %}
{% if forloop.last %}
{% if page.url == '/membership/' %}
/ <a href="{{'/membership' | relative_url }}">Membership</a> / {{ page.title }}
/ <a href="{{'/membership' | relative_url}}">Membership</a> / {{ page.title }}
{% else %}
/ {{ page.title }}
{% endif %}
{% else %}
/ <a
href="{% assign crumb_limit = forloop.index | plus: 1 %}{% for crumb in crumbs limit: crumb_limit %}{{ crumb | append: '/' }}{% endfor %}">{{
href="{% assign crumb_limit = forloop.index | plus: 1 %}{% for crumb in crumbs limit: crumb_limit %}{{ crumb | append: '/' | relative_url }}{% endfor %}">{{
crumb | replace:'-',' ' | remove:'.html' | capitalize }}</a>
{% endif %}
{% endfor %}
{% endif %}
</div>
9 changes: 7 additions & 2 deletions _layouts/category.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@
layout: page
---

<h2>{{ page.title | replace: '-', ' ' | pretty }}</h2>
<h2>
{% assign words = page.title | replace: '-', ' ' | split: ' ' %}
{% for word in words %}
{{ word | capitalize }}
{% endfor %}
</h2>

<!-- Retrieve and sort posts by 'revdate' in descending order -->
{% assign sorted_posts = page.posts | sort: 'revdate' %}
{% assign sorted_posts = page.posts | sort: 'date' | reverse %}

<!-- Iterate through each sorted post -->
{% for post in sorted_posts %}
Expand Down
20 changes: 20 additions & 0 deletions _posts/2009-02-20-ben-fortuna-and-ical4j.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
layout: page
title: Ben Fortuna and iCal4j
date: 2009-02-20
type: news
categories: special-focus
excerpt: CalConnect held its fourteenth members’ meeting (Roundtable) and interoperability test event last week (February 2-6) in Redmond, Washington, hosted by Microsoft.
---

== Ben Fortuna and iCal4j

Posted February 20, 2009

CalConnect held its fourteenth members meeting (Roundtable) and interoperability test event last week (February 2-6) in Redmond, Washington, hosted by Microsoft.

We have just started a Guest Speaker program, and our first Guest Speaker was Ben Fortuna, the author of http://wiki.modularity.net.au/ical4j/index.php?title=Main_Page[iCal4j]. (iCal4j is a Java API providing support for the iCalendar specification, RFC 2445, which defines the data schema for calendaring information.)

Ben is from Melbourne, Australia, and came all the way to Redmond to be with us for the week, and to speak on iCal4j. You can find his presentation to CalConnect at link:{{'/docs/iCal4j_Calconnect.pdf' | relative_url}}[iCal4j_Calconnect.pdf]. We re delighted Ben was able to be with us.


24 changes: 24 additions & 0 deletions _posts/2009-02-20-welcome-to-calconnect.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
layout: page
title: Welcome to CalConnect
date: 2009-02-20
type: news
categories: general-information
excerpt: This blog is for and about CalConnect – The Calendaring and Scheduling Consortium – and occasional other posts related to the quest for interoperable calendaring and scheduling.
---

== Welcome to CalConnect

Posted February 20, 2009

This blog is for and about link:{{'/' | relative_url}}[CalConnect] The Calendaring and Scheduling Consortium and occasional other posts related to the quest for interoperable calendaring and scheduling.

I m Dave Thewlis, the Executive Director of CalConnect. I hope to use this blog to keep interested folks apprised of what s going on with CalConnect in a timely fashion, and so it will be prone to œannouncements.&nbsp; But I ll try to keep it from being too dry and uninteresting.

For those who aren t familiar with CalConnect, it is a very collegial partnership between vendors, implementers, and customers of calendaring and scheduling systems.

Our purpose is to promote interoperable calendaring and scheduling. Our vision for the future is not just interoperable calendaring, but ubiquitous interoperable calendaring: Calendaring can be, and should be, as available, easy to use, and ubiquitous as electronic mail.

&nbsp;


20 changes: 20 additions & 0 deletions _posts/2009-02-23-report-on-the-second-mobile-iop-test-event.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
layout: page
title: Report on the second Mobile IOP Test Event
date: 2009-02-23
type: news
categories: current-events
excerpt: Since its inception, CalConnect has conducted Interoperability Test Events.  They are generally held over 2-1/2 days in conjunction with a Roundtable (members meeting), and we do them three times a year.  Public reports on these events are posted on our website.
---

== Report on the second Mobile IOP Test Event

Posted February 23, 2009

Since its inception, CalConnect has conducted Interoperability Test Events. They are generally held over 2-1/2 days in conjunction with a Roundtable (members meeting), and we do them three times a year. Public reports on these events are posted on our website.

Last year, however, we held our first and second Mobile Calendaring Interoperability Test Events, the first in February and the second in November. In another landmark for CalConnect, the second event was held in Plzen, Czech Republic, hosted by Kerio Technologies.

The public report on this test event has just been published, and may be found at link:{{'/interop/Nov%202008%20Mobile%20Interop%20Report%20-%20Public%202-0.doc' | relative_url}}[Second Mobile Calendaring IOP Test Event].


16 changes: 16 additions & 0 deletions _posts/2009-03-02-host-and-location-set-for-calconnect-xv.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: page
title: Host and location set for CalConnect XV
date: 2009-03-02
type: news
categories: general-information
excerpt: CalConnect XV (IOP Test Event and Roundtable) will be hosted by Oracle Corporation on June 1-5, 2009, at Oracle’s HQ in Redwood Shores, California. We hope to open registration early, but in any case by the beginning of April.
---

== Host and location set for CalConnect XV

Posted March 2, 2009

CalConnect XV (IOP Test Event and Roundtable) will be hosted by Oracle Corporation on June 1-5, 2009, at Oracle s HQ in Redwood Shores, California. We hope to open registration early, but in any case by the beginning of April.


17 changes: 17 additions & 0 deletions _posts/2009-03-02-report-on-roundtable-xiv.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
layout: page
title: Report on Roundtable XIV
date: 2009-03-02
type: news
categories:
excerpt: There’s a brief report on  Roundtable XIV, up on the CalConnect website at link:/roundtable14rpt.
---

== Report on Roundtable XIV

Posted March 2, 2009

There s a brief report on Roundtable XIV, up on the CalConnect website at link:{{'/roundtable14rpt' | relative_url}}[Roundtable XIV Report].



Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
layout: page
title: Planned outage for CalConnect server Thursday March 26
date: 2009-03-20
type: news
categories: announcements
excerpt: We are planning for a 4-hour outage Thursday evening March 26 from 19:00-23:00 Eastern Time. That will be 16:00-20:00 Pacific Time and 23:00-03:00 UTC. We want to be sure we are leaving enough time for any unforeseen problems and still be functional Friday morning, and the necessary talent isn’t available over the weekend.
---

== Planned outage for CalConnect server Thursday March 26

Posted March 20, 2009

We are planning for a 4-hour outage Thursday evening March 26 from 19:00-23:00 Eastern Time. That will be 16:00-20:00 Pacific Time and 23:00-03:00 UTC. We want to be sure we are leaving enough time for any unforeseen problems and still be functional Friday morning, and the necessary talent isn t available over the weekend.

During the outage period, none of the CalConnect services will be available including mailing lists any e-mails to the lists will queue up until the new server is up.


Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
layout: page
title: Registration is open for CalConnect XV, June 1-5, 2009
date: 2009-03-20
type: news
categories: announcements
excerpt: Registration is now open for CalConnect XV comprised of Roundtable XV and a CalConnect Interoperability Test Event, hosted by Oracle in Redwood Shores, California, on June 1-5, 2009.
---

== Registration is open for CalConnect XV, June 1-5, 2009

Posted March 20, 2009

*Registration is now open* for CalConnect XV comprised of Roundtable XV and a CalConnect Interoperability Test Event, hosted by Oracle in Redwood Shores, California, on June 1-5, 2009.

Please see link:{{'/calconnect15' | relative_url}}[CalConnect XV] for logistics information and links to registration for the Roundtable and for the CalConnect Interoperability Test Event. We will meet in the Oracle Conference Center at 350 Oracle Parkway, Redwood Shores.

If you are planning on participating in the CalConnect Interoperability Test Event, it begins with breakfast on Monday morning the 1st at 08:00 and runs to noon on Wednesday the 3rd. As usual the Roundtable will begin with lunch at 12:30 on Wednesday the 3rd and run until early Friday afternoon the 5th.

A general schedule of events is provided on the logistics page; the final schedule of TC sessions, together with topical agendas, will be available by mid-May.&nbsp;

See you at Oracle in June!


Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: page
title: A two-fer in June – attend CalConnect, then WWDC
date: 2009-03-27
type: news
categories: general-information
excerpt: Apple’s WorldWide Developers’ Conference was just set for the second week of June (8-12), the week following CalConnect XV at Oracle in Redwood Shores. A grand chance to combine two trips and take a holiday weekend in-between in the Bay Area!
---

== A two-fer in June – attend CalConnect, then WWDC

Posted March 27, 2009

Apple s WorldWide Developers Conference was just set for the second week of June (8-12), the week following CalConnect XV at Oracle in Redwood Shores. A grand chance to combine two trips and take a holiday weekend in-between in the Bay Area!


15 changes: 15 additions & 0 deletions _posts/2009-03-31-nasa-joins-calconnect.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
layout: page
title: NASA joins CalConnect
date: 2009-03-31
type: news
categories: announcements current-events
excerpt: I’m delighted to announce that NASA, the National Aeronautics and Space Administration, has joined The Calendaring and Scheduling Consortium.  
---

== NASA joins CalConnect

Posted March 31, 2009

I m delighted to announce that NASA, the National Aeronautics and Space Administration, has joined The Calendaring and Scheduling Consortium.

16 changes: 16 additions & 0 deletions _posts/2009-04-02-zideone-joins-calconnect.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: page
title: ZideOne Joins CalConnect
date: 2009-04-02
type: news
categories: announcements current-events
excerpt: I’m delighted to announce that ZideOne GmbH has joined The Calendaring and Scheduling Consortium.
---

== ZideOne Joins CalConnect

Posted April 2, 2009

I m delighted to announce that ZideOne GmbH has joined The Calendaring and Scheduling Consortium.


15 changes: 15 additions & 0 deletions _posts/2009-04-13-member-news-announcements.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
layout: page
title: Member News Announcements
date: 2009-04-13
type: news
categories: announcements general-information member-news
excerpt: The CalConnect Blog will be publishing short announcements from our members about significant news and events in the calendaring space. This may include but will not be limited to product announcements, and the intent is to try and provide a useful feed for calendaring-related information to interested parties. These posts will consist of short summaries and links to actual documents, press releases, blogs, and so forth.  
---

== Member News Announcements

Posted April 13, 2009

The CalConnect Blog will be publishing short announcements from our members about significant news and events in the calendaring space. This may include but will not be limited to product announcements, and the intent is to try and provide a useful feed for calendaring-related information to interested parties. These posts will consist of short summaries and links to actual documents, press releases, blogs, and so forth.

26 changes: 26 additions & 0 deletions _posts/2009-04-13-member-news-calendaring-at-duke-university.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
layout: page
title: Member News – Calendaring at Duke University
date: 2009-04-13
type: news
categories: member-news the-world-of-calendaring
excerpt: During the past year, calendaring has taken hold on the campus at Duke University, with the launch of its institutional events calendar, Events@Duke (calendar.duke.edu), last July and the launch of a student calendar, buzz (buzz.duke.edu), this past January. To get an idea of the types of things they’re doing, the following are stories about their calendaring efforts.
---

== Member News – Calendaring at Duke University

Posted April 13, 2009

During the past year, calendaring has taken hold on the campus at Duke University, with the launch of its institutional events calendar, Events@Duke (calendar.duke.edu), last July and the launch of a student calendar, buzz (buzz.duke.edu), this past January. To get an idea of the types of things they re doing, the following are stories about their calendaring efforts.

http://www.news.duke.edu/2009/03/bedework.html A number of universities that have implemented, or are implementing, the http://www.bedework.org/bedework/[Bedework] software as their event calendars have been collaborating as they discover they share many of the same functional requirements for a public event calendar.

http://news.duke.edu/2009/01/buzz.html Using the same Bedework software used for its institutional calendar, Duke launches an event calendar for students.

http://news.duke.edu/2009/02/widgets.html Facebook and Google calendar widgets add new functionality to Duke s event calendars.

http://news.duke.edu/2009/03/mobileinternal.html Duke introduces customized applications, including its public events calendar, for mobile devices

http://www.oit.duke.edu/web-multimedia/web/calendar/ Website provides Duke departments and calendar admins with tools for generating and consuming RSS and XML files of events from its calendars.


Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: page
title: February 2009 Interoperability Test Event Report
date: 2009-04-14
type: news
categories: announcements current-events
excerpt: CalConnect has published the public version of the Interoperability Test Event Report from February 2009. Full internal reports are only available to representatives of members of the Consortium, but the public event reports are freely available on the CalConnect website. The report may be viewed at February 2009 CalConnect Interoperability Test Report.
---

== February 2009 Interoperability Test Event Report

Posted April 14, 2009

CalConnect has published the public version of the Interoperability Test Event Report from February 2009. Full internal reports are only available to representatives of members of the Consortium, but the public event reports are freely available on the CalConnect website. The report may be viewed at link:{{'/docs/CD0902%20February%202009%20CalConnect%20Interoperability%20Test%20Report.pdf' | relative_url}}[February 2009 CalConnect Interoperability Test Report].


Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
layout: page
title: CalConnect publishes Proposal for Freebusy Read URL
date: 2009-04-15
type: news
categories: announcements general-information the-world-of-calendaring
excerpt: CalConnect’s FREEBUSY Technical Committee has just published a Proposal* for Freebusy Read URL. This Proposal defines a standardized form of Freebusy Read URL to improve interoperability between client and server implementations, while extending the functionality and utility through the use of optional parameters. Please see Freebusy Read URL.
---

== CalConnect publishes Proposal for Freebusy Read URL

Posted April 15, 2009

CalConnect s FREEBUSY Technical Committee has just published a Proposal\* for Freebusy Read URL. This Proposal defines a standardized form of Freebusy Read URL to improve interoperability between client and server implementations, while extending the functionality and utility through the use of optional parameters. Please see link:{{'/docs/CD0903%20Freebusy%20Read%20URL.pdf' | relative_url}}[Freebusy Read URL].

*CalConnect Proposals are experimental specifications intended for research and exploration, e.g. through trial implementations, to determine usefulness and applicability. Proposals deemed successful are candidates to be offered to an appropriate standards body for adoption and progression as a standard.&nbsp;


16 changes: 16 additions & 0 deletions _posts/2009-04-24-notify-technology-joins-calconnect.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: page
title: Notify Technology joins CalConnect
date: 2009-04-24
type: news
categories: announcements general-information member-news
excerpt: I’m delighted to announce that Notify Technology has joined The Calendaring and Scheduling Consortium.
---

== Notify Technology joins CalConnect

Posted April 24, 2009

I m delighted to announce that http://www.notifycorp.com[Notify Technology] has joined The Calendaring and Scheduling Consortium.


Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
layout: page
title: Revision to iCalendar (rfc2445bis) approved as Proposed Standard by IESG
date: 2009-04-29
type: news
categories: announcements current-events the-world-of-calendaring
excerpt: The IESG has just announced that the revised draft of RFC 2445, Internet Calendaring and Scheduling Core Object Specification (iCalendar) (currently called rfc2445bis) has been approved as a Proposed Standard. CalConnect has for some time been providing input and errata to the IETF CALSIFY working group to support this revision. CalConnect congratulates the CALSIFY working group, Bernard Desruisseaux, the editor of the revision, and everyone who worked to bring this revision to completion and publication. The revised version of RFC 2445 will allow the incorporation of extensions to iCalendar for additional functionality, such as VAVAILABILITY.
---

== Revision to iCalendar (rfc2445bis) approved as Proposed Standard by IESG

Posted April 29, 2009

The IESG has just announced that the revised draft of RFC 2445, _Internet Calendaring and Scheduling Core Object Specification (iCalendar)_ (currently called rfc2445bis) has been approved as a Proposed Standard. CalConnect has for some time been providing input and errata to the IETF CALSIFY working group to support this revision. CalConnect congratulates the CALSIFY working group, Bernard Desruisseaux, the editor of the revision, and everyone who worked to bring this revision to completion and publication. The revised version of RFC 2445 will allow the incorporation of extensions to iCalendar for additional functionality, such as http://tools.ietf.org/html/draft-daboo-calendar-availability-01[VAVAILABILITY].

The approved version of RFC 2445bis may be found at http://www.ietf.org/internet-drafts/draft-ietf-calsify-rfc2445bis-10.txt

A complete list of all changes from RFC 2445 to the bis version may be found at http://tools.ietf.org/wg/calsify/draft-ietf-calsify-rfc2445bis/draft-ietf-calsify-rfc2445bis-10.changes.html[].


18 changes: 18 additions & 0 deletions _posts/2009-04-29-schedule-for-calconnect-xv-now-available.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
layout: page
title: Schedule for CalConnect XV now available
date: 2009-04-29
type: news
categories: announcements current-events
excerpt: The schedule for CalConnect XV (June 1-5 2009) is now available on the CalConnect website, at link:/calconnect15#schedule or as a downloadable iCalendar file at link:/CalConnectXV.ics.
---

== Schedule for CalConnect XV now available

Posted April 29, 2009

The schedule for CalConnect XV (June 1-5 2009) is now available on the CalConnect website, at link:{{'/calconnect15#schedule' | relative_url}}[] or as a downloadable iCalendar file at link:{{'/CalConnectXV.ics' | relative_url}}[].

The CalConnect week is divided into an Interoperability Test Event, all day Monday and Tuesday, plus Wednesday morning, and a CalConnect Roundtable, beginning with lunch on Wednesday and running to midafternoon on Friday. CalConnect XV will be hosted by Oracle Corporation in Redwood Shores; for more information refer to link:{{'/calconnect15' | relative_url}}[].


Loading
Loading