Page 33 sur 48

Re: [Sujet officiel] Plugin iCalendar

Publié : 04 déc. 2016, 21:29
par HeadsB
patmtp35 a écrit :bonjour,

dans mon calendrier google j'ai un appel a VMC qui lance le scénario copie d’écran ,.....
Hello,
Perso je ne comprends pas ton choix sur programmé sans déclencheur temps.
Dans les précèdents exemple il parlait de provoqué avec comme déclencheur l'objet Google agenda.
Au lieu de faire un sleep tu pourrais faire une action Dans. L'utilisation du cpu pour calculer les secondes est important.
Après mon idée n'est peut être pas la meilleure.
A+

Re: [Sujet officiel] Plugin iCalendar

Publié : 04 déc. 2016, 21:34
par patmtp35
@HeadsB

merci pourles infos je vais faire des tests, mais ce que je comprend pas c'est que cela marcher bien avant ....

ps action dans pas trouver ???

Re: [Sujet officiel] Plugin iCalendar

Publié : 04 déc. 2016, 22:41
par HeadsB
patmtp35 a écrit :@HeadsB

merci pourles infos je vais faire des tests, mais ce que je comprend pas c'est que cela marcher bien avant ....

ps action dans pas trouver ???
Oui excuse moi
Dans c'est un bloc. Tu notes dans x minutes faire, et là tu mets ton action off.
A+

Envoyé de mon SM-G900F en utilisant Tapatalk

Re: [Sujet officiel] Plugin iCalendar

Publié : 05 déc. 2016, 10:08
par patmtp35
@headsb merci nickel je met en place et je teste !

Re: [Sujet officiel] Plugin iCalendar

Publié : 06 déc. 2016, 20:28
par patmtp35
@headsb apres 2j de tests avec ta solution merci !!!!! tu ma ouvert de nouveaux horizons!

Re: [Sujet officiel] Plugin iCalendar

Publié : 07 déc. 2016, 10:48
par cadavor
@abarrau : Peux-tu mettre un lien vers la documentation dans ton premier post du sujet? Ca facilitera son accès (surtout avec les problèmes récents de doc de jeedom). Merci.

Re: [Sujet officiel] Plugin iCalendar

Publié : 09 déc. 2016, 07:11
par abarrau
@headsb, si je t'envoie une nouvelle version directement tu peux l'installer ?
Je pense que ton problème est corrigé dans la prochaine version.

Re: [Sujet officiel] Plugin iCalendar

Publié : 09 déc. 2016, 13:19
par JM_DomoAdepte
Bonjour,

Il y a quelque temps, j'avais demandé à abarrau la possibilité de gérer l'adresse d'un rendez-vous dans son plugin.
abarrau a écrit :@JM_DomoAdepte, ce que je n'arrive pas à voir c'est comment tu souhaites utiliser cette information.

La commande agenda remonte des événements :
- qui peut lancer des actions/scénario si paramétré au niveau de l'événement
- qui peut déclenché un scénario sur changement d'état de la commande.

je n'arrive pas à voir à quel moment le "lieu" peut-être utile et surtout comment il t'est restitué.

Mais c'est une chose qui peut être étudié, du moment qu'on arrive à comprendre où et comment tu souhaites échanger/agir sur cette donnée au niveau de ton système.

De l'eau a coulé sous les ponts mais je voulais donner le morceau de code que j'ai pris le temps d'écrire cette semaine qui me permet de placer dans trois variables exploitables le nom d'un rendez-vous, son heure de départ et le duo longitude, latitude correspondant à l'adresse indiquée.

Le code ci-dessous est à mettre dans un bloc code.

Code : Tout sélectionner

$cmd =cmd::byString("#[Objet parent][Nom de l'équipement ][Nom de l'équipement]#"); 
$result=$cmd->execCmd();
$conca1=strpos($result,';');
$conca2=strpos($result,';;')+2;
$conca3=strpos($result,';',$conca2)-$conca2;
$conca4=strpos($result,';;',$conca2)+13;
$conca5=strpos($result,' France',$conca4)-$conca4; 
$scenario->setData('Conca1',$conca1);
$scenario->setData('Conca2',$conca2);
$scenario->setData('Conca3',$conca3);
$scenario->setData('Conca4',$conca4);
$scenario->setData('Conca5',$conca5);
$rdv=substr($result,$conca2,$conca3);
$lieu_rdv=substr($result,$conca4,$conca5);
$scenario->setData('rdv_a_venir',$rdv);
$heure_rdv=substr($result,0,$conca1);
$heure_rdv=str_replace(':','',$heure_rdv);
$scenario->setData('heure_rdv_a_venir',$heure_rdv);
$URL="https://maps.googleapis.com/maps/api/geocode/json?address=".urlencode($lieu_rdv);
$json = file_get_contents($URL);
$parsed_json = json_decode($json);

$lat = $parsed_json->{'results'}[0]->{'geometry'}->{'location'}->{'lat'};
$long = $parsed_json->{'results'}[0]->{'geometry'}->{'location'}->{'lng'};
$lieu_rdv=$lat.",".$long;
$scenario->setData('lieu_rdv_a_venir',$lieu_rdv);
Pour mon propre usage, j'envoie les infos de lieu au plugin de géolocalisation (configuré en dynamique) qui calcule régulièrement le temps nécessaire pour me rendre de l'endroit où se trouve mon portable à l'endroit prévu par la réunion.

Toutes les heures, j'ai un scenario qui regarde si mon heure de départ est compris entre maintenant et l'heure suivante.
Si oui, il programme l'envoi d'un message à l'heure de départ (- 10 min) pour me rappeler mon rendez-vous et m'informer du temps de circulation pour l'atteindre (temps qui varie en fonction des conditions de circulation).

Jusque là tout marche très bien mais je n'ai pas encore vérifié ce qui se passe qd j'ai plusieurs rendez-vous qui s'affiche.

Encore merci à abarrau pour ce plugin

Re: [Sujet officiel] Plugin iCalendar

Publié : 12 déc. 2016, 11:54
par HeadsB
patmtp35 a écrit :@headsb apres 2j de tests avec ta solution merci !!!!! tu ma ouvert de nouveaux horizons!
Hello @patmtp35,
de rien, je ne suis surement pas le meilleur, mais si je peux aider, c'est avec plaisir. :D
A+

Re: [Sujet officiel] Plugin iCalendar

Publié : 12 déc. 2016, 11:57
par HeadsB
abarrau a écrit :@headsb, si je t'envoie une nouvelle version directement tu peux l'installer ?
Je pense que ton problème est corrigé dans la prochaine version.
Hello, @abarrau,
je ne sais pas si c'est simple à installer ?
Je ne suis pas fortiche dans le code .... si il y a des commandes spéciales à faire, je veux bien suivre tes conseils .. ;)
A+

[Sujet officiel] Plugin iCalendar

Publié : 14 déc. 2016, 07:48
par eldoctor62
Bonjour, un vieux problème refait surface… J'ai un planning récurrent qui donne des M pour le travail au matin et un A pour après-midi… j'ai donc il y a très longtemps cree une récurrence dans le planning agenda Google or aujourd'hui suite à une modification de planning je me rends compte que dans le plug-in icalendar figure toujours la première récurrence fait alors que je l'ai bien supprimé du planning Google.
La modification de planning a bien sûr été faite il y a déjà plusieurs semaines donc je ne comprends pas pourquoi aujourd'hui ce n'est pas à jour dans J DOM… Qu'en dis tu ?

Re: [Sujet officiel] Plugin iCalendar

Publié : 19 déc. 2016, 00:34
par Laurent R
DuplO a écrit :Bonjour,

J'ai mis ça en place aussi, ce n'est pas bien méchant. Voici comment j'ai fait :
1- création d'un Google agenda anniversaire, le mettre en visibilité publique et copier le lien ics
2- mise en place du plugin iCalenar et configuration avec le lien ics de l'agenda anniversaire
3- créer un scénario :
----- qui se déclenche sur l’évènement du icalendar anniversaire
----- créer un bloc de type SI/Alors/Sinon :
-------- Si : #[Agenda anni]# != "Aucun"
-------- Alors : variable anni = #[Agenda anni]#
-------- Sinon : variable anni =
4- Créer un virtuel, créer un info de type autre avec comme paramètre : variable(anni), mettre affichage à oui

Et hop voili voilou.
Ensuite j'utilise cette variable dans un scénario pour que mon Karotz m'alerte le matin si il y a un anni :)
@DuplO, puis-je abuser de ta gentillesse et te demander des copies d’écran de comment tu as réussi. J'ai essaye de plusieurs façon et ça ne marche pas :( (je suis en mode maxi debutant ce soir :roll: )

Re: [Sujet officiel] Plugin iCalendar

Publié : 30 déc. 2016, 14:24
par nou
Hello,

en faisant un peu un tour de mon jeedom, je me suis rendu compte que le plugin icalendar était en erreur dans la page santé.
direction les logs et voici ce que je trouve :

Code : Tout sélectionner

[2016-12-30 14:19:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 14:19:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 14:19:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 14:19:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 14:19:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 14:19:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 14:19:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 14:19:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 14:19:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 14:19:01][DEBUG] : [CRON END]=====(0.019)
[2016-12-30 14:19:03][DEBUG] : [SAVE|466] SAVE START // eqLogic.preSave(): "AgendaDrine"
[2016-12-30 14:19:03][DEBUG] : [SAVE|466] SAVE END // eqLogic.postSave()
[2016-12-30 14:19:03][DEBUG] : [SAVE|466|1833] SAVE START // cmd.preSave(): "la-bam"
[2016-12-30 14:19:03][DEBUG] : [SAVE|466|1833] getICSFile() starting ...
[2016-12-30 14:19:03][DEBUG] : [SAVE|466|1833] getICSFileCaldav() starting ...
[2016-12-30 14:19:03][DEBUG] : [SAVE|466|1833] getICSFileCaldav(): Date Start=1483048800 | 2016-12-29 23:00:00 | 20161229T230000Z
[2016-12-30 14:19:03][DEBUG] : [SAVE|466|1833] getICSFileCaldav(): Date End=1483307999 | 2017-01-01 22:59:59 | 20170101T235959Z
[2016-12-30 14:19:03][DEBUG] : [SAVE|466|1833] getICSFileCaldav(): connexion info=SimpleCalDAVClientExt Object (     [client:SimpleCalDAVClient:private] => CalDAVClientICal Object         (             [base_url:protected] => /caldav/             [user:protected] => drine             [pass:protected] => ppqp1412             [entry:protected] =>              [protocol:protected] => tcp             [server:protected] => 192.168.1.29             [port:protected] => 8080             [principal_url:protected] =>              [calendar_url] =>              [calendar_home_set:protected] =>              [calendar_urls:protected] =>              [user_agent] => simpleCalDAVclient             [headers:protected] => Array                 (                     [content-type] => Content-type: text/plain                     [disable_expect] => Expect:                 )              [body:protected] =>              [requestMethod:protected] => OPTIONS             [httpRequest:protected] => OPTIONS /caldav/ HTTP/1.1 User-Agent: cURL based CalDAV client Host: 192.168.1.29:8080 Accept: */* Content-type: text/plain               [xmlRequest:protected] =>              [httpResponse:protected] =>              [xmlResponse:protected] =>              [httpResultCode:protected] => 200             [parser:protected] =>              [timeout:CalDAVClientICal:private] => 10             [ch:CalDAVClientICal:private] => Resource id #10             [full_url:CalDAVClientICal:private] => http://192.168.1.29:8080/caldav/             [first_url_part] => http://192.168.1.29:8080             [request_url] => http://192.168.1.29:8080/caldav/             [httpResponseHeaders] => HTTP/1.1 200 OK DAV: 1, access-control, calendar-access, calendar-schedule, calendarserver-principal-property-search Allow: OPTIONS, GET, POST, PUT, DELETE, MOVE Allow: PROPFIND, PROPPATCH, REPORT, MKCALENDAR Content-Length: 0 Server: Zarafa Date: Fri, 30 Dec 2016 13:19:03 GMT Connection: close               [httpResponseBody] =>          )      [url:SimpleCalDAVClient:private] =>      [_isConnected] => 1 )
[2016-12-30 14:19:04][DEBUG] : [SimpleCalDAVClientExt::getAndSetCalendar()] Set by name=FLDPRFX_15B72631C2884C2EA82E8D9226F48CAE
[2016-12-30 14:19:45][DEBUG] : [SAVE|466|1833] manageICSFile() force update cache file
[2016-12-30 14:19:45][INFO] : [SAVE|466|1833] saveICSFile(): Mise à jour du fichier en cache: /tmp/iCalendar/iCal1833-20161230141903.tmp.ics
[2016-12-30 14:19:45][DEBUG] : [SAVE|466|1833] manageICSFile() delete previous ics file (/tmp/iCalendar/iCal1833-20161230141350.tmp.ics)
[2016-12-30 14:19:45][DEBUG] : [SAVE|466|1833] formatRangeEvents() start initialise ICal class
[2016-12-30 14:19:46][DEBUG] : [SAVE|466|1833] formatRangeEvents() ICal Class is initialised (time=0.314sec)
[2016-12-30 14:19:46][DEBUG] : [SAVE|466|1833] formatRangeEvents().periodeWorking=1 | _dStart=1483052400 (2016-12-30 00:00:00) | _dEnd=1483311599 (2017-01-01 23:59:59)
[2016-12-30 14:19:46][DEBUG] : [ICalReaderExt::getEventsFromRange()] _dStartRange=1483052400 (2016-12-30 00:00:00) | _dEndRange=1483311599 (2017-01-01 23:59:59)
[2016-12-30 14:19:46][DEBUG] : [SAVE|466|1833] formatRangeEvents() return Period Events (1)
[2016-12-30 14:19:46][DEBUG] : [SAVE|466|1833] postSave(): create/update cmd:"la-bam (J+1)" - eqLogicId=iCal-1833-J1
[2016-12-30 14:19:46][DEBUG] : [SAVE|466|1833] postSave(): create/update cmd:"la-bam (ExecuteFunction-1833)" - eqLogicId=iCal-1833-ExecFunction
[2016-12-30 14:19:46][DEBUG] : [SAVE|466|1833] SAVE END // cmd.postSave()
[2016-12-30 14:19:48][DEBUG] : [DASH|466] toHtml(dashboard) start ...
[2016-12-30 14:19:48][DEBUG] : [DASH|466] toHtml(dashboard) start ...
[2016-12-30 14:19:48][INFO] : [DASH|466] toHtml(dashboard) Refresh Widget (2 cal.): OK (0.014)
[2016-12-30 14:19:48][DEBUG] : [DASH|466] toHtml(dashboard) aborded !
[2016-12-30 14:20:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 14:20:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 14:20:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 14:20:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 14:20:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 14:20:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 14:20:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 14:20:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 14:20:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 14:20:02][DEBUG] : [CRON END]=====(0.018)
[2016-12-30 14:21:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 14:21:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 14:21:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 14:21:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 14:21:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 14:21:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 14:21:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 14:21:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 14:21:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 14:21:01][DEBUG] : [CRON END]=====(0.015)
[2016-12-30 14:21:35][DEBUG] : [AJAX] getEventsInCalendar() starting... with param: Array (     [cmdId] => 1833     [dStart] => 1475186400     [dEnd] => 1498773600 )
[2016-12-30 14:21:35][DEBUG] : [AJAX|466|1833] getEventsInCalendar() start initialise data
[2016-12-30 14:21:35][DEBUG] : [AJAX|466|1833] formatRangeEvents()._icsContents is regerate by cache file
[2016-12-30 14:21:35][DEBUG] : [AJAX|466|1833] formatRangeEvents() start initialise ICal class
[2016-12-30 14:21:36][DEBUG] : [AJAX|466|1833] formatRangeEvents() ICal Class is initialised (time=0.311sec)
[2016-12-30 14:21:36][DEBUG] : [AJAX|466|1833] formatRangeEvents().periodeWorking=1 | _dStart=1475186400 (2016-09-30 00:00:00) | _dEnd=1498773600 (2017-06-30 00:00:00)
[2016-12-30 14:21:36][DEBUG] : [ICalReaderExt::getEventsFromRange()] _dStartRange=1475186400 (2016-09-30 00:00:00) | _dEndRange=1498773600 (2017-06-30 00:00:00)
[2016-12-30 14:21:36][DEBUG] : [AJAX|466|1833] formatRangeEvents() return Period Events (127)
[2016-12-30 14:21:36][INFO] : [AJAX|466|1833] saveJSONFile(): Mise à jour du fichier en cache: /tmp/iCalendar/iCal1833-1475186400-1498773600.tmp.json
[2016-12-30 14:21:36][DEBUG] : [AJAX|466|1833] getEventsInCalendar() json content is save in cache file : /tmp/iCalendar/iCal1833-1475186400-1498773600.tmp.json
[2016-12-30 14:22:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 14:22:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 14:22:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 14:22:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 14:22:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 14:22:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 14:22:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 14:22:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 14:22:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 14:22:02][DEBUG] : [CRON END]=====(0.021)
Personnellement, je ne vois pas de gros problème, mais bon...

Re: [Sujet officiel] Plugin iCalendar

Publié : 30 déc. 2016, 15:11
par abarrau
Bonjour,
Outre le fait qu'il soit en "erreur", peux-tu préciser ? combien il y a de croix sur les 20 derniers essais, quel est ta fréquence de rafraichissement ?
Merci

Re: [Sujet officiel] Plugin iCalendar

Publié : 30 déc. 2016, 19:29
par nou
Tu peux m'éclairer un peu stp. C'est quoi le nombre croix ?
Pour la fréquence de rafraîchissemen, elle est à 12h

Re: [Sujet officiel] Plugin iCalendar

Publié : 30 déc. 2016, 19:35
par abarrau
lorsque tu vas sur l'onglet santé, outre le fait qu'il soit en "KO", il y a un texte à coté et un indicateur qui préciser les 15 derniers essais (pardon) de rafraichissement (cf. la doc).
Exemple : "o o o o o o o o o o o o X o o".

Re: [Sujet officiel] Plugin iCalendar

Publié : 30 déc. 2016, 21:47
par nou
j'avais jamais remarqué....

X X X X X X X Au moins 1 erreur d'accès lors des derniers échanges.

ce qui est étrange, c'est que ca fonctionne par ailleurs. je m'explique : j'ai rajouté un évenement dans le calendrier qui est surveillé, et il est bien apparu à la synchronisation suivante...

Re: [Sujet officiel] Plugin iCalendar

Publié : 30 déc. 2016, 22:15
par abarrau
Donc tu as 15 croix et aucun o ?

Re: [Sujet officiel] Plugin iCalendar

Publié : 30 déc. 2016, 23:02
par nou
pour le moment, 7 croix et aucun o

et mes derniers logs :

Code : Tout sélectionner

[2016-12-30 22:01:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:01:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:01:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:01:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:01:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:01:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:01:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:01:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:01:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:01:01][DEBUG] : [CRON END]=====(0.013)
[2016-12-30 22:02:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:02:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:02:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:02:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:02:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:02:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:02:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:02:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:02:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:02:01][DEBUG] : [CRON END]=====(0.017)
[2016-12-30 22:03:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:03:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:03:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:03:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:03:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:03:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:03:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:03:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:03:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:03:02][DEBUG] : [CRON END]=====(0.011)
[2016-12-30 22:04:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:04:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:04:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:04:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:04:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:04:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:04:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:04:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:04:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:04:01][DEBUG] : [CRON END]=====(0.017)
[2016-12-30 22:05:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:05:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:05:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:05:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:05:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:05:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:05:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:05:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:05:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:05:01][DEBUG] : [CRON END]=====(0.046)
[2016-12-30 22:06:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:06:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:06:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:06:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:06:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:06:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:06:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:06:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:06:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:06:02][DEBUG] : [CRON END]=====(0.021)
[2016-12-30 22:07:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:07:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:07:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:07:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:07:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:07:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:07:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:07:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:07:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:07:01][DEBUG] : [CRON END]=====(0.015)
[2016-12-30 22:08:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:08:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:08:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:08:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:08:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:08:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:08:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:08:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:08:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:08:01][DEBUG] : [CRON END]=====(0.019)
[2016-12-30 22:09:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:09:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:09:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:09:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:09:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:09:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:09:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:09:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:09:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:09:01][DEBUG] : [CRON END]=====(0.017)
[2016-12-30 22:10:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:10:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:10:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:10:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:10:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:10:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:10:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:10:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:10:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:10:01][DEBUG] : [CRON END]=====(0.018)
[2016-12-30 22:11:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:11:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:11:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:11:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:11:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:11:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:11:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:11:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:11:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:11:02][DEBUG] : [CRON END]=====(0.016)
[2016-12-30 22:12:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:12:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:12:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:12:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:12:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:12:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:12:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:12:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:12:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:12:01][DEBUG] : [CRON END]=====(0.014)
[2016-12-30 22:13:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:13:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:13:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:13:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:13:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:13:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:13:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:13:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:13:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:13:01][DEBUG] : [CRON END]=====(0.026)
[2016-12-30 22:14:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:14:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:14:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:14:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:14:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:14:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:14:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:14:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:14:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:14:02][DEBUG] : [CRON END]=====(0.017)
[2016-12-30 22:15:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:15:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:15:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:15:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:15:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:15:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:15:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:15:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:15:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:15:02][DEBUG] : [CRON END]=====(0.029)
[2016-12-30 22:16:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:16:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:16:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:16:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:16:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:16:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:16:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:16:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:16:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:16:01][DEBUG] : [CRON END]=====(0.012)
[2016-12-30 22:17:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:17:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:17:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:17:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:17:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:17:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:17:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:17:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:17:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:17:01][DEBUG] : [CRON END]=====(0.015)
[2016-12-30 22:18:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:18:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:18:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:18:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:18:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:18:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:18:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:18:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:18:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:18:02][DEBUG] : [CRON END]=====(0.014)
[2016-12-30 22:19:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:19:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:19:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:19:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:19:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:19:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:19:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:19:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:19:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:19:01][DEBUG] : [CRON END]=====(0.011)
[2016-12-30 22:20:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:20:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:20:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:20:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:20:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:20:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:20:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:20:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:20:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:20:02][DEBUG] : [CRON END]=====(0.019)
[2016-12-30 22:21:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:21:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:21:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:21:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:21:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:21:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:21:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:21:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:21:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:21:01][DEBUG] : [CRON END]=====(0.011)
[2016-12-30 22:22:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:22:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:22:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:22:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:22:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:22:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:22:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:22:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:22:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:22:01][DEBUG] : [CRON END]=====(0.02)
[2016-12-30 22:23:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:23:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:23:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:23:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:23:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:23:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:23:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:23:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:23:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:23:02][DEBUG] : [CRON END]=====(0.016)
[2016-12-30 22:24:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:24:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:24:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:24:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:24:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:24:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:24:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:24:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:24:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:24:02][DEBUG] : [CRON END]=====(0.017)
[2016-12-30 22:25:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:25:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:25:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:25:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:25:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:25:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:25:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:25:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:25:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:25:01][DEBUG] : [CRON END]=====(0.025)
[2016-12-30 22:26:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:26:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:26:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:26:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:26:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:26:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:26:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:26:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:26:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:26:01][DEBUG] : [CRON END]=====(0.011)
[2016-12-30 22:27:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:27:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:27:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:27:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:27:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:27:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:27:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:27:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:27:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:27:01][DEBUG] : [CRON END]=====(0.016)
[2016-12-30 22:28:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:28:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:28:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:28:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:28:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:28:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:28:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:28:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:28:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:28:02][DEBUG] : [CRON END]=====(0.013)
[2016-12-30 22:29:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:29:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:29:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:29:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:29:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:29:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:29:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:29:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:29:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:29:02][DEBUG] : [CRON END]=====(0.018)
[2016-12-30 22:30:01][DEBUG] : [CRON30 START]===== cron30().nb iCalendar=1
[2016-12-30 22:30:01][DEBUG] : [CRON30|466] cron30().nb cmd=2
[2016-12-30 22:30:01][DEBUG] : [CRON30 END]=====(0.026)
[2016-12-30 22:30:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:30:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:30:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:30:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:30:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:30:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:30:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:30:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:30:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:30:02][DEBUG] : [CRON END]=====(0.033)
[2016-12-30 22:31:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:31:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:31:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:31:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:31:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:31:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:31:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:31:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:31:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:31:02][DEBUG] : [CRON END]=====(0.015)
[2016-12-30 22:32:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:32:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:32:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:32:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:32:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:32:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:32:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:32:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:32:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:32:01][DEBUG] : [CRON END]=====(0.016)
[2016-12-30 22:33:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:33:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:33:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:33:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:33:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:33:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:33:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:33:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:33:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:33:01][DEBUG] : [CRON END]=====(0.016)
[2016-12-30 22:34:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:34:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:34:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:34:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:34:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:34:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:34:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:34:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:34:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:34:02][DEBUG] : [CRON END]=====(0.02)
[2016-12-30 22:35:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:35:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:35:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:35:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:35:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:35:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:35:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:35:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:35:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:35:01][DEBUG] : [CRON END]=====(0.027)
[2016-12-30 22:36:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:36:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:36:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:36:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:36:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:36:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:36:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:36:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:36:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:36:02][DEBUG] : [CRON END]=====(0.02)
[2016-12-30 22:37:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:37:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:37:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:37:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:37:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:37:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:37:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:37:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:37:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:37:02][DEBUG] : [CRON END]=====(0.015)
[2016-12-30 22:38:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:38:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:38:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:38:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:38:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:38:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:38:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:38:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:38:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:38:01][DEBUG] : [CRON END]=====(0.017)
[2016-12-30 22:39:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:39:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:39:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:39:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:39:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:39:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:39:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:39:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:39:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:39:02][DEBUG] : [CRON END]=====(0.015)
[2016-12-30 22:40:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:40:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:40:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:40:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:40:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:40:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:40:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:40:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:40:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:40:01][DEBUG] : [CRON END]=====(0.034)
[2016-12-30 22:41:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:41:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:41:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:41:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:41:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:41:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:41:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:41:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:41:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:41:01][DEBUG] : [CRON END]=====(0.016)
[2016-12-30 22:42:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:42:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:42:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:42:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:42:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:42:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:42:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:42:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:42:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:42:02][DEBUG] : [CRON END]=====(0.02)
[2016-12-30 22:43:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:43:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:43:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:43:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:43:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:43:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:43:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:43:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:43:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:43:02][DEBUG] : [CRON END]=====(0.022)
[2016-12-30 22:44:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:44:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:44:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:44:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:44:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:44:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:44:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:44:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:44:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:44:01][DEBUG] : [CRON END]=====(0.016)
[2016-12-30 22:45:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:45:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:45:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:45:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:45:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:45:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:45:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:45:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:45:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:45:02][DEBUG] : [CRON END]=====(0.032)
[2016-12-30 22:46:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:46:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:46:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:46:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:46:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:46:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:46:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:46:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:46:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:46:01][DEBUG] : [CRON END]=====(0.012)
[2016-12-30 22:47:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:47:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:47:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:47:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:47:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:47:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:47:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:47:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:47:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:47:01][DEBUG] : [CRON END]=====(0.013)
[2016-12-30 22:48:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:48:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:48:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:48:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:48:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:48:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:48:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:48:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:48:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:48:02][DEBUG] : [CRON END]=====(0.02)
[2016-12-30 22:49:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:49:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:49:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:49:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:49:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:49:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:49:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:49:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:49:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:49:02][DEBUG] : [CRON END]=====(0.016)
[2016-12-30 22:50:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:50:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:50:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:50:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:50:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:50:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:50:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:50:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:50:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:50:02][DEBUG] : [CRON END]=====(0.031)
[2016-12-30 22:51:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:51:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:51:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:51:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:51:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:51:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:51:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:51:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:51:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:51:02][DEBUG] : [CRON END]=====(0.012)
[2016-12-30 22:52:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:52:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:52:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:52:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:52:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:52:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:52:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:52:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:52:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:52:02][DEBUG] : [CRON END]=====(0.017)
[2016-12-30 22:53:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:53:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:53:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:53:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:53:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:53:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:53:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:53:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:53:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:53:01][DEBUG] : [CRON END]=====(0.019)
[2016-12-30 22:54:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:54:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:54:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:54:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:54:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:54:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:54:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:54:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:54:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:54:02][DEBUG] : [CRON END]=====(0.018)
[2016-12-30 22:55:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:55:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:55:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:55:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:55:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:55:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:55:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:55:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:55:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:55:01][DEBUG] : [CRON END]=====(0.016)
[2016-12-30 22:56:02][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:56:02][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:56:02][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:56:02][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:56:02][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:56:02][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:56:02][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:56:02][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:56:02][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:56:02][DEBUG] : [CRON END]=====(0.016)
[2016-12-30 22:57:01][DEBUG] : [CRON START]===== cron().nb iCalendar=1
[2016-12-30 22:57:01][DEBUG] : [CRON|466] cron().nb cmd=2
[2016-12-30 22:57:01][DEBUG] : [CRON|466|1833] execute(iCal-1833-J0) starting...
[2016-12-30 22:57:01][DEBUG] : [CRON|466|1833] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId=""
[2016-12-30 22:57:01][INFO] : [CRON|466|1833|Erwan Cinoche] isEventForPeriode(): event in the periode
[2016-12-30 22:57:01][INFO] : [CRON|466|1833|Erwan Cinoche] execute(): added event.
[2016-12-30 22:57:01][DEBUG] : [CRON|466|1923] execute(iCal-1833-J1) starting...
[2016-12-30 22:57:01][DEBUG] : [CRON|466|1923] execute() INFO cmd with defaultValue="", viewStyle="1day_today", indicateur="1, periodeWorking="1", originalCmdId="1833"
[2016-12-30 22:57:01][DEBUG] : [CRON|466|1923] execute(), add 1 days since today (86400sec)
[2016-12-30 22:57:01][DEBUG] : [CRON END]=====(0.022)
[2016-12-30 22:57:22][DEBUG] : [DASH|466] toHtml(dashboard) start ...
[2016-12-30 22:57:22][DEBUG] : [DASH|466] toHtml(dashboard) aborded !

Re: [Sujet officiel] Plugin iCalendar

Publié : 31 déc. 2016, 12:22
par n.granier
Bonjour,
Le plugin fonctionne a merveille mais je trouve le widget peu pratique.
Est'l possible d'avoir un vue directe sur plusieurs jour, sans avoir à utiliser les carrés du haut pour naviguer entre les dates ?