Como se comentó hace algunas semanas tenemos la posibilidad de que
todos los eventos registrados en el calendario hispano se publiquen en
http://opendesktop.org
este es el enlace donde aparecerían .
http://opendesktop.org/events/
Como veréis los eventos hispanos no están de los más frecuentes.
Para ello tenemos que hacer un programita en php que conecte a través
del API de
opendesktop.org
http://www.freedesktop.org/wiki/Specifications/open-collaboration-services#EVENT
Desde nuestra base de datos de eventos. cuya estructura esta aqui.
CREATE TABLE IF NOT EXISTS `calendarix_events` (
`id` int(11) NOT NULL auto_increment,
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update
CURRENT_TIMESTAMP,
`title` varchar(255) character set latin1 collate latin1_spanish_ci
NOT NULL default '',
`description` text character set latin1 collate latin1_spanish_ci
NOT NULL,
`location` varchar(100) character set latin1 collate
latin1_spanish_ci NOT NULL default '',
`url` varchar(100) NOT NULL default '',
`email` varchar(120) NOT NULL default '',
`cat` tinyint(2) NOT NULL default '0',
`starttime` varchar(8) NOT NULL default '',
`endtime` varchar(8) NOT NULL default '',
`day` tinyint(2) NOT NULL default '0',
`month` smallint(2) NOT NULL default '0',
`year` smallint(4) NOT NULL default '0',
`approved` tinyint(1) NOT NULL default '0',
`fee` varchar(15) NOT NULL default '',
`priority` tinyint(1) NOT NULL default '0',
`user` varchar(30) NOT NULL default '',
`timezone` varchar(5) NOT NULL default '',
`idgroup` varchar(30) NOT NULL default '',
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3411 ;
¿A alguien el parece interesante?¿cuanto código habría que hacer?
un saludo