Changeset 247


Ignore:
Timestamp:
Jul 26, 2015, 5:15:45 PM (9 years ago)
Author:
alloc
Message:

Fixes

Location:
binary-improvements
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/MapRendering/Web/Handlers/ApiHandler.cs

    r244 r247  
    3131                                resp.StatusCode = (int)HttpStatusCode.Forbidden;
    3232                                if (user != null) {
    33                                         Log.Out ("ApiHandler: user '{0}' not allowed to execute '{1}'", user.SteamID, apiName);
     33                                        //Log.Out ("ApiHandler: user '{0}' not allowed to execute '{1}'", user.SteamID, apiName);
    3434                                } else {
    35                                         Log.Out ("ApiHandler: unidentified user from '{0}' not allowed to execute '{1}'", req.RemoteEndPoint.Address, apiName);
     35                                        //Log.Out ("ApiHandler: unidentified user from '{0}' not allowed to execute '{1}'", req.RemoteEndPoint.Address, apiName);
    3636                                }
    3737                                return;
  • binary-improvements/MapRendering/Web/Web.cs

    r244 r247  
    164164                                                                        response.StatusCode = (int)HttpStatusCode.Forbidden;
    165165                                                                        if (conn != null) {
    166                                                                                 Log.Out ("Web.HandleRequest: user '{0}' not allowed to access '{1}'", conn.SteamID, kvp.Value.ModuleName);
     166                                                                                //Log.Out ("Web.HandleRequest: user '{0}' not allowed to access '{1}'", conn.SteamID, kvp.Value.ModuleName);
    167167                                                                        } else {
    168                                                                                 Log.Out ("Web.HandleRequest: unidentified user from '{0}' not allowed to access '{1}'", request.RemoteEndPoint.Address, kvp.Value.ModuleName);
     168                                                                                //Log.Out ("Web.HandleRequest: unidentified user from '{0}' not allowed to access '{1}'", request.RemoteEndPoint.Address, kvp.Value.ModuleName);
    169169                                                                        }
    170170                                                                } else {
  • binary-improvements/webserver/css/style.css

    r245 r247  
    1111        width: 100%;
    1212        height: 100vh;
    13         background-color: #ccc;
     13        background-color: #408040;
    1414}
    1515
     
    2929        width: 200px;
    3030        left: 0;
    31         background-color: purple;
     31        background-color: #408040;
    3232}
    3333
     
    8686        left: 0px;
    8787        right: 0px;
    88         background-color: green;
     88        background-color: #408040;
    8989}
    9090
     
    106106        right: 0;
    107107        left: 200px;
    108         background-color: #a04;
     108        background-color: #408040;
    109109}
    110110
     
    128128
    129129.adminmap {
    130         background-color: #260040;
     130        background-color: #408040;
    131131        bottom: 0;
    132132}
Note: See TracChangeset for help on using the changeset viewer.