From: Art Cancro Date: Sat, 31 May 2003 21:36:45 +0000 (+0000) Subject: * Cosmetic changes X-Git-Tag: v7.86~5874 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=debbe41ff148462fb79fb36c8b96176b638862bd;p=citadel.git * Cosmetic changes --- diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 99aef41ac..8902a52dc 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,7 @@ $Log$ +Revision 410.41 2003/05/31 21:36:45 ajc +* Cosmetic changes + Revision 410.40 2003/05/26 21:05:42 ajc * availability.c: brought over ical_ctdl_is_overlap() from Citadel. Used it to complete the free/busy checking for attendee availability. @@ -1440,3 +1443,4 @@ Sun Dec 6 19:50:55 EST 1998 Art Cancro 1998-12-03 Nathan Bryant * webserver.c: warning fix + diff --git a/webcit/auth.c b/webcit/auth.c index a764367c0..591e00797 100644 --- a/webcit/auth.c +++ b/webcit/auth.c @@ -54,6 +54,8 @@ void display_login(char *mesg) } svprintf("hello", WCS_SERVCMD, "MESG hello"); + svprintf("BOXTITLE", WCS_STRING, "%s - powered by Citadel", + serv_info.serv_humannode); do_template("login"); diff --git a/webcit/availability.c b/webcit/availability.c index 3b89cc08f..fdda99743 100644 --- a/webcit/availability.c +++ b/webcit/availability.c @@ -57,15 +57,12 @@ icalcomponent *get_freebusy_for_user(char *who) { return NULL; } - return fb; + return(fb); } - - - /* * Check to see if two events overlap. Returns nonzero if they do. * (This function is used in both Citadel and WebCit. If you change it in @@ -122,10 +119,6 @@ int ical_ctdl_is_overlap( - - - - /* * Back end function for check_attendee_availability() * This one checks an individual attendee against a supplied diff --git a/webcit/calendar_view.c b/webcit/calendar_view.c index 94ba0833d..75fb4f9fc 100644 --- a/webcit/calendar_view.c +++ b/webcit/calendar_view.c @@ -382,31 +382,37 @@ void calendar_day_view(int year, int month, int day) { /* Begin todays-date-with-left-and-right-arrows */ - wprintf("
\n"); - - wprintf("\n"); - - wprintf("", + wprintf("
" - "", - yesterday.year, yesterday.month, yesterday.day - ); - wprintf("" - "" - "

%s

%d

%d

" - "
\n"); + wprintf(""); + + /* Left arrow */ + wprintf(""); + + /* Today's date */ + wprintf(""); - wprintf("\n"); + " BORDER=0>\n"); + wprintf(""); - wprintf("
"); + wprintf("", + yesterday.year, yesterday.month, yesterday.day); + wprintf(""); + wprintf(""); + wprintf("%s
" + "%d
" + "%d
", months[month-1], day, year); + wprintf("
" - "", - tomorrow.year, tomorrow.month, tomorrow.day - ); + /* Right arrow */ + wprintf(""); + wprintf("", + tomorrow.year, tomorrow.month, tomorrow.day); wprintf("
\n"); + wprintf("\n"); /* End todays-date-with-left-and-right-arrows */ - wprintf("
" + wprintf("

" " " "Add new calendar event" diff --git a/webcit/static/login.html b/webcit/static/login.html index 3baf7b61a..d80cf91b6 100644 --- a/webcit/static/login.html +++ b/webcit/static/login.html @@ -1,4 +1,4 @@ - +
@@ -7,16 +7,19 @@

-
+
-
User name:
Password:
+ + + + diff --git a/webcit/static/style.css b/webcit/static/style.css index 18ae5786c..887035b70 100644 --- a/webcit/static/style.css +++ b/webcit/static/style.css @@ -58,7 +58,7 @@ a:active { .boxlabel { font-family: Bitstream Vera Sans,Arial,Helvetica,sans-serif; - font-size: 6pt; + font-size: 9pt; font-style: bold; color: #FFFFEE; }