You can subscribe to this list here.
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(6) |
Oct
(6) |
Nov
(8) |
Dec
(2) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2005 |
Jan
(19) |
Feb
(15) |
Mar
(10) |
Apr
(8) |
May
(7) |
Jun
(9) |
Jul
(13) |
Aug
(31) |
Sep
(111) |
Oct
(52) |
Nov
(72) |
Dec
(42) |
| 2006 |
Jan
(21) |
Feb
(32) |
Mar
(33) |
Apr
(24) |
May
(15) |
Jun
(40) |
Jul
(32) |
Aug
(19) |
Sep
(38) |
Oct
(37) |
Nov
(63) |
Dec
(37) |
| 2007 |
Jan
(18) |
Feb
(39) |
Mar
(69) |
Apr
(49) |
May
(71) |
Jun
(59) |
Jul
(71) |
Aug
(85) |
Sep
(46) |
Oct
(14) |
Nov
(25) |
Dec
(56) |
| 2008 |
Jan
(24) |
Feb
(77) |
Mar
(104) |
Apr
(44) |
May
(41) |
Jun
(11) |
Jul
(31) |
Aug
(59) |
Sep
(44) |
Oct
(86) |
Nov
(66) |
Dec
(93) |
| 2009 |
Jan
(88) |
Feb
(41) |
Mar
(49) |
Apr
(135) |
May
(22) |
Jun
(31) |
Jul
(60) |
Aug
(71) |
Sep
(76) |
Oct
(18) |
Nov
(52) |
Dec
(20) |
| 2010 |
Jan
(8) |
Feb
(50) |
Mar
(35) |
Apr
(48) |
May
(46) |
Jun
(84) |
Jul
(38) |
Aug
(61) |
Sep
(51) |
Oct
(31) |
Nov
(17) |
Dec
(18) |
| 2011 |
Jan
(51) |
Feb
(14) |
Mar
(17) |
Apr
(23) |
May
(15) |
Jun
(11) |
Jul
(5) |
Aug
(5) |
Sep
(15) |
Oct
(8) |
Nov
(5) |
Dec
(25) |
| 2012 |
Jan
(2) |
Feb
(4) |
Mar
(6) |
Apr
(9) |
May
(27) |
Jun
(32) |
Jul
(36) |
Aug
(10) |
Sep
(16) |
Oct
(3) |
Nov
(13) |
Dec
(7) |
| 2013 |
Jan
(1) |
Feb
(4) |
Mar
|
Apr
(1) |
May
|
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(4) |
Oct
(2) |
Nov
(1) |
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
(2) |
Apr
(1) |
May
(2) |
Jun
(9) |
Jul
(5) |
Aug
(2) |
Sep
(4) |
Oct
|
Nov
|
Dec
|
| 2015 |
Jan
(3) |
Feb
(2) |
Mar
(4) |
Apr
(3) |
May
(1) |
Jun
(2) |
Jul
|
Aug
(2) |
Sep
(5) |
Oct
(1) |
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(5) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
| 2017 |
Jan
(6) |
Feb
|
Mar
|
Apr
(10) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(1) |
Dec
|
| 2018 |
Jan
(2) |
Feb
(5) |
Mar
|
Apr
|
May
(1) |
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2019 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2020 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
| 2021 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2023 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
1
(2) |
2
(2) |
3
|
4
|
|
5
|
6
|
7
(3) |
8
|
9
|
10
(2) |
11
|
|
12
(2) |
13
(1) |
14
|
15
(5) |
16
(5) |
17
(4) |
18
|
|
19
|
20
|
21
|
22
(2) |
23
(3) |
24
(1) |
25
|
|
26
|
27
|
28
|
|
|
|
|
|
From: <php...@li...> - 2006-02-22 15:39:00
|
php...@li... wrote:
> $vevent = new
> Java("net.fortuna.ical4j.model.component.VEvent",(String)"20051225T190000",(String)"20051225T220000",(String)"Christmas
> Day");
> ...
> *Fatal error*: Uncaught [o(Exception):"java.lang.Exception:
> CreateInstance failed: new
> net.fortuna.ical4j.model.component.VEvent((Date)o(String),
> (Date)o(String), (String)o(String)). Cause:
> java.lang.IllegalArgumentException: argument type mismatch"] thrown in
> */var/www/java/ical4j-testing/test.php* on line *25*
you need to pass a java date object as first and second parameter, not a
string
i am not familiar with java but something like
$date = new Java('java.date',('20051225T190000');
could help
look add the java reference on how to create an java.date object
--
Sebastian Mendel
www.sebastianmendel.de
www.sf.net/projects/phpdatetime | www.sf.net/projects/phptimesheet
|
|
From: <php...@li...> - 2006-02-22 15:22:25
|
Hi, This my second post but I'm really lost with my project... So, I've chosen the iCal4j library available here : http://ical4j.sourceforge.net/ I want to create iCal using Java and PHP. This library is, according to me, the best way ! There is a nice documentation : http://ical4j.sourceforge.net/introduction.html and a complete API list. I've tried to create iCal using the introduction.html of the Ben Fortuna's website (http://ical4j.sourceforge.net/introduction.html) and I've failed t= o parse an ics file or create a simple icalendar object. This is a copy of my test.php <?php java_require("/var/www/java/ical4j-testing/jar/ical4j.jar"); echo "Test de la librarie iCal4J"; echo "<hr>"; echo "Cr=E9ation d'un iCalendar"; // On cr=E9=E9 un nouvel objet Calendar - We create a new Calendar object $calendar=3Dnew Java("net.fortuna.ical4j.model.Calendar"); // On cr=E9=E9 un nouvel objet objet ProdId avec le blabla qui suit - We cr= eate a new object ProdId $prodid=3Dnew Java("net.fortuna.ical4j.model.property.ProdId","-//Clem//Pro= ut 1.0//EN"); // On cr=E9e=E9 un nouvel objet Version - we create a new version object $version=3Dnew Java("net.fortuna.ical4j.model.property.Version"); // Puis on lui met la valeur que l'on veut - We set a value to the object $version->setValue("VERSION_2.0"); // On ajoute =E0 l'objet Calandar les propri=E9t=E9s - We add the propertie= s to the calendar object $calendar->getProperties()->add($prodid); $calendar->getProperties()->add($version); $vevent =3D new Java("net.fortuna.ical4j.model.component.VEvent",(String)"2= 0051225T190000",(String)"20051225T220000",(String)"Christmas Day"); // On cr=E9=E9 un objet calendar de sortie - We create an outputter calenda= r $outputter=3D new Java("net.fortuna.ical4j.data.CalendarOutputter"); // On cr=E9=E9 un objet de sortie - We create an output stream $sortie=3Dnew Java("java.io.FileOutputStream","/tmp/test.ics"); // On utilise la methode output de la classe CalendarOutputter - We use the ouput method $outputter->output($calendar,$sortie); ?> The test.php screenoutput is : Test de la librarie iCal4J ------------------------------ Cr=E9ation d'un iCalendar *Fatal error*: Uncaught [o(Exception):"java.lang.Exception: CreateInstance failed: new net.fortuna.ical4j.model.component.VEvent((Date)o(String), (Date)o(String), (String)o(String)). Cause: java.lang.IllegalArgumentException: argument type mismatch"] thrown in * /var/www/java/ical4j-testing/test.php* on line *25* Can you help me ? Could you say me how reproduce the simple examples of http://ical4j.sourceforge.net/introduction.html with php-java-bridge ?? Many thanks in advance. Regards. Clement -- Cl=E9ment Legrand |