Changeset 247
- Timestamp:
- Jul 26, 2015, 5:15:45 PM (9 years ago)
- Location:
- binary-improvements
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/MapRendering/Web/Handlers/ApiHandler.cs
r244 r247 31 31 resp.StatusCode = (int)HttpStatusCode.Forbidden; 32 32 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); 34 34 } 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); 36 36 } 37 37 return; -
binary-improvements/MapRendering/Web/Web.cs
r244 r247 164 164 response.StatusCode = (int)HttpStatusCode.Forbidden; 165 165 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); 167 167 } 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); 169 169 } 170 170 } else { -
binary-improvements/webserver/css/style.css
r245 r247 11 11 width: 100%; 12 12 height: 100vh; 13 background-color: # ccc;13 background-color: #408040; 14 14 } 15 15 … … 29 29 width: 200px; 30 30 left: 0; 31 background-color: purple;31 background-color: #408040; 32 32 } 33 33 … … 86 86 left: 0px; 87 87 right: 0px; 88 background-color: green;88 background-color: #408040; 89 89 } 90 90 … … 106 106 right: 0; 107 107 left: 200px; 108 background-color: # a04;108 background-color: #408040; 109 109 } 110 110 … … 128 128 129 129 .adminmap { 130 background-color: # 260040;130 background-color: #408040; 131 131 bottom: 0; 132 132 }
Note:
See TracChangeset
for help on using the changeset viewer.