Test
суббота, 6 июня 2009 г.
четверг, 4 июня 2009 г.
В субботу мы не катаемся!
А радостно и весело, с народными гуляниями отмечаем день рождения дорогого нашего Саши Сахарова!
Когда напьемся мы зовем его "Сахарок".
Потому что любим его.
Саша! Дорогой! Мы тебя поздравляем от всей души. Поцелуем и обнимем в субботу.
Вот!
Счастья тебе,
удачи,
хорошего настроения,
успехов на работе,
здоровья тебе, твоей дочурке и прекрасной супруге.
Твои друзья.
Когда напьемся мы зовем его "Сахарок".
Потому что любим его.
Саша! Дорогой! Мы тебя поздравляем от всей души. Поцелуем и обнимем в субботу.
Вот!
Счастья тебе,
удачи,
хорошего настроения,
успехов на работе,
здоровья тебе, твоей дочурке и прекрасной супруге.
Твои друзья.
На чем мы катаемся
У нас с Сергеем стоит гидроцикл. Для скейта - то что нужно.
В порту стоит катер Артема и Верочки.
Лодка хорошая.
В порту стоит катер Артема и Верочки.
Лодка хорошая.
Test
/*
* Create a single event
*/
// Create the calendar service object
var calendarService = new google.gdata.calendar.CalendarService('GoogleInc-jsguide-1.0');
// The default "private/full" feed is used to insert event to the
// primary calendar of the authenticated user
var feedUri = 'http://www.google.com/calendar/feeds/default/private/full';
// Create an instance of CalendarEventEntry representing the new event
var entry = new google.gdata.calendar.CalendarEventEntry();
// Set the title of the event
entry.setTitle(google.gdata.Text.create('JS-Client: insert event'));
// Create a When object that will be attached to the event
var when = new google.gdata.When();
// Set the start and end time of the When object
var startTime = google.gdata.DateTime.fromIso8601("2008-02-10T09:00:00.000-08:00");
var endTime = google.gdata.DateTime.fromIso8601("2008-02-10T10:00:00.000-08:00");
when.setStartTime(startTime);
when.setEndTime(endTime);
// Add the When object to the event
entry.addTime(when);
// The callback method that will be called after a successful insertion from insertEntry()
var callback = function(result) {
PRINT('event created!');
}
// Error handler will be invoked if there is an error from insertEntry()
var handleError = function(error) {
PRINT(error);
}
// Submit the request using the calendar service object
calendarService.insertEntry(feedUri, entry, callback,
handleError, google.gdata.calendar.CalendarEventEntry);
* Create a single event
*/
// Create the calendar service object
var calendarService = new google.gdata.calendar.CalendarService('GoogleInc-jsguide-1.0');
// The default "private/full" feed is used to insert event to the
// primary calendar of the authenticated user
var feedUri = 'http://www.google.com/calendar/feeds/default/private/full';
// Create an instance of CalendarEventEntry representing the new event
var entry = new google.gdata.calendar.CalendarEventEntry();
// Set the title of the event
entry.setTitle(google.gdata.Text.create('JS-Client: insert event'));
// Create a When object that will be attached to the event
var when = new google.gdata.When();
// Set the start and end time of the When object
var startTime = google.gdata.DateTime.fromIso8601("2008-02-10T09:00:00.000-08:00");
var endTime = google.gdata.DateTime.fromIso8601("2008-02-10T10:00:00.000-08:00");
when.setStartTime(startTime);
when.setEndTime(endTime);
// Add the When object to the event
entry.addTime(when);
// The callback method that will be called after a successful insertion from insertEntry()
var callback = function(result) {
PRINT('event created!');
}
// Error handler will be invoked if there is an error from insertEntry()
var handleError = function(error) {
PRINT(error);
}
// Submit the request using the calendar service object
calendarService.insertEntry(feedUri, entry, callback,
handleError, google.gdata.calendar.CalendarEventEntry);
среда, 3 июня 2009 г.
вторник, 2 июня 2009 г.
Что должно быть здесь?
Прошу высказать ваши пожелания.
Что нужно в этом блоге?
Устраивает ли вид?
Все, что посчитаете нужным - пишите.
Что нужно в этом блоге?
Устраивает ли вид?
Все, что посчитаете нужным - пишите.
Подписаться на:
Сообщения (Atom)