From 5e953fef35f252ba2c8787fb2b7e44fd77a7b8e6 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Fri, 15 Nov 2002 04:11:46 +0000 Subject: [PATCH] * Added even more nifty JavaScript to cause the hour/minute and end date fields of a calendar event form to render as disabled when the "all day event" box is checked -- not just when the user checks the box, but also when the box begins its life already checked. --- webcit/ChangeLog | 7 ++++++- webcit/event.c | 32 +++++++++++++++++++++++++++++++- 2 files changed, 37 insertions(+), 2 deletions(-) diff --git a/webcit/ChangeLog b/webcit/ChangeLog index cb8948cd1..9b16d1094 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,10 @@ $Log$ +Revision 400.50 2002/11/15 04:11:46 ajc +* Added even more nifty JavaScript to cause the hour/minute and end date + fields of a calendar event form to render as disabled when the "all day + event" box is checked -- not just when the user checks the box, but also + when the box begins its life already checked. + Revision 400.49 2002/11/14 04:59:40 ajc * Correctly serialize and save all day events using date instead of date/time @@ -1112,4 +1118,3 @@ Sun Dec 6 19:50:55 EST 1998 Art Cancro 1998-12-03 Nathan Bryant * webserver.c: warning fix - diff --git a/webcit/event.c b/webcit/event.c index 0cea5ed7b..7daf5ea34 100644 --- a/webcit/event.c +++ b/webcit/event.c @@ -68,7 +68,8 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum) } *************************************************************/ - wprintf("
\n"); + wprintf("\n"); + wprintf("\n", msgnum); wprintf("\n", @@ -190,6 +191,35 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum) ); wprintf("
\n"); + + wprintf(" + "); wDumpContent(1); -- 2.39.2