Mostly HTML Validation stuff, also removed the #room_ROOMNAME id until we have a...
authorthe_mgt <themgt@ueberserver.de>
Tue, 5 Jul 2011 21:49:04 +0000 (23:49 +0200)
committerWilfried Goesgens <dothebart@citadel.org>
Sun, 4 Sep 2011 21:31:54 +0000 (21:31 +0000)
<img src=\"image?name=_userpic_&amp;parm=" <- on the userlist might act funny, i hope not

webcit/static/styles/service.css
webcit/static/t/head.html
webcit/static/t/knrooms.html
webcit/static/t/readinfo.html
webcit/userlist.c

index f4b63075b64bfc83f61e79a8bd6c769f5ced706c..4b32be3ee9609f6e1aade12533153682af973aaf 100644 (file)
@@ -6,7 +6,7 @@
        margin-top: 0.5em;
        padding: 0 0.5em;
        width: 95%;
-       font-family: mono;
+       font-family: monospace;
        background-color: #ffff;
        border: 1px solid #5C646B;
        -webkit-box-shadow: #666 0px 1px 2px;
index 7e6125cfbad11419f05f8758f442d3e9d0f2ab85..5473907b32abcc2b00e3ca0d8f9475de5c15fd90 100644 (file)
@@ -25,7 +25,7 @@
                <script type="text/javascript" src="static/ctdldragdrop.js"></script>
                <script type="text/javascript" src="static/modal.js"></script>
        </head>
-<body id="room_<?CURRENT_ROOM>">
+<body>
 <div id="is_logged_in" style="display:none"><?%("COND:LOGGEDIN", 1, 1, 1, "no", "yes")></div>
 <?ICONBAR>
 <!-- begin modal box -->
index c55fbb63b252d6fd87fdf87b58aee83e11c0ecc9..ea7411244ba218b012b4794249edfd6ebadecbb2 100644 (file)
@@ -1,4 +1,4 @@
-<div id="content" class="service">
-<table BORDER=0 WIDTH=96%% CELLPADDING=5>
-<?ITERATE("LKRA", ="knrooms_rooms")>
-</table>
+<div class="service">
+       <table border="0" width="96%" cellpadding="5">
+               <?ITERATE("LKRA", ="knrooms_rooms")>
+       </table>
index 747093ef541f37634d8e21ec628ca1c5106dfa68..cebe9f4b9978bfcdd278e438cad6a32edcf9c0e6 100644 (file)
@@ -1,6 +1,6 @@
 <div class="infos" 
        onMouseOver="javascript:Effect.Appear('room_infos', { duration: 2 });"
-       onMouseOut="javascript:Effect.Fade('room_infos', { duration: 2 });""
+       onMouseOut="javascript:Effect.Fade('room_infos', { duration: 2 });"
 >
        <?THISROOM:INFOTEXT(30, "X")>
 </div>
index ff38b9440554962646c5477b84084fb61d3a3691..8889a1996faf1d7b1eea939ae06d3c349616b468 100644 (file)
@@ -113,7 +113,7 @@ void showuser(void)
 
        output_headers(1, 1, 2, 0, 0, 0);
        wc_printf("<div id=\"banner\">\n");
-       wc_printf("<img src=\"static/webcit_icons/essen/32x32/account.png\">");
+       wc_printf("<img src=\"static/webcit_icons/essen/32x32/account.png\" alt\"\">");
         wc_printf("<h1>");
        wc_printf(_("User profile"));
         wc_printf("</h1>");
@@ -121,7 +121,7 @@ void showuser(void)
        wc_printf("<ul><li><a href=\"display_page?recp=");
        urlescputs(who);
         wc_printf("\">"
-                "<img src=\"static/webcit_icons/essen/16x16/chat.png\">"
+                "<img src=\"static/webcit_icons/essen/16x16/chat.png\" alt=\"\">"
                "<span class=\"navbar_link\">");
         snprintf(buf, sizeof buf, _("Click here to send an instant message to %s"), who);
         escputs(buf);
@@ -145,9 +145,9 @@ void showuser(void)
 
        wc_printf("<center><table><tr><td>");
        if (have_pic == 1) {
-               wc_printf("<img src=\"image?name=_userpic_&parm=");
+               wc_printf("<img src=\"image?name=_userpic_&amp;parm=");
                urlescputs(who);
-               wc_printf("\">");
+               wc_printf("\" alt=\"\">");
        }
        wc_printf("</td><td><h1>");
        escputs(who);