Changeset 12546
- Timestamp:
- 06/30/15 12:31:15 (9 years ago)
- Location:
- trunk/sources
- Files:
-
- 6 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Services.WebApp.Status/3.3/HeuristicLab.Services.WebApp.Status-3.3.csproj
r12428 r12546 73 73 </PropertyGroup> 74 74 <ItemGroup> 75 <Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">76 <HintPath>..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>77 <Private>False</Private>78 </Reference>79 75 <Reference Include="System" /> 80 76 <Reference Include="System.Core" /> -
trunk/sources/HeuristicLab.Services.WebApp.Status/3.3/WebApp/status/status.cshtml
r12521 r12546 80 80 <tr data-toggle="tooltip" data-placement="bottom" title="All online slaves"> 81 81 <td class="text-left">Total:</td> 82 <td class="text-right">{{status.MemoryStatus.TotalMemory | toGB}}</td>82 <td class="text-right">{{status.MemoryStatus.TotalMemory | kbToGB}} GB</td> 83 83 </tr> 84 84 <tr data-toggle="tooltip" data-placement="bottom" title="All calculating and idle slaves that are allowed to calculate"> 85 85 <td class="text-left">Active:</td> 86 <td class="text-right">{{status.MemoryStatus.ActiveMemory | toGB}}</td>86 <td class="text-right">{{status.MemoryStatus.ActiveMemory | kbToGB}} GB</td> 87 87 </tr> 88 88 <tr data-toggle="tooltip" data-placement="bottom" title="All calculating slaves that are allowed to calculate"> 89 89 <td class="text-left">Calculating:</td> 90 <td class="text-right">{{status.MemoryStatus.UsedMemory | toGB}}</td>90 <td class="text-right">{{status.MemoryStatus.UsedMemory | kbToGB}} GB</td> 91 91 </tr> 92 92 </table> … … 233 233 <td>{{slave.Slave.Name}}</td> 234 234 <td>{{slave.CpuUtilization | number: 2}} %</td> 235 <td>{{slave.Cores | number}}</td>236 <td>{{slave.Memory | toGB}}</td>235 <td>{{slave.Cores - slave.FreeCores | number}} / {{slave.Cores | number}}</td> 236 <td>{{slave.Memory - slave.FreeMemory | kbToGB}} / {{slave.Memory | kbToGB}} GB</td> 237 237 </tr> 238 238 <tr ng-hide="activeCalculatingSlaves.length"> … … 291 291 <td>{{slave.Slave.Name}}</td> 292 292 <td>{{slave.CpuUtilization | number: 2}} %</td> 293 <td>{{slave.Cores | number}}</td>294 <td>{{slave.Memory | toGB}}</td>293 <td>{{slave.Cores - slave.FreeCores | number}} / {{slave.Cores | number}}</td> 294 <td>{{slave.Memory - slave.FreeMemory | kbToGB}} / {{slave.Memory | kbToGB}} GB</td> 295 295 </tr> 296 296 <tr ng-hide="activeIdleSlaves.length"> … … 348 348 <td>{{slave.Slave.Name}}</td> 349 349 <td>{{slave.CpuUtilization | number: 2}} %</td> 350 <td>{{slave.Cores | number}}</td>351 <td>{{slave.Memory | toGB}}</td>350 <td>{{slave.Cores - slave.FreeCores | number}} / {{slave.Cores | number}}</td> 351 <td>{{slave.Memory - slave.FreeMemory | kbToGB}} / {{slave.Memory | kbToGB}} GB</td> 352 352 </tr> 353 353 <tr ng-hide="inactiveSlaves.length"> -
trunk/sources/HeuristicLab.Services.WebApp.Status/3.3/WebApp/status/statusCtrl.js
r12521 r12546 202 202 }] 203 203 ); 204 205 module.filter('toGB', function () {206 return function (text, length, end) {207 if (text == null || text == '') text = '0';208 text = Math.round(parseInt(text) / 1024);209 return text + ' GB';210 };211 });212 213 204 })(); -
trunk/sources/HeuristicLab.Services.WebApp.Status/3.3/packages.config
r12429 r12546 5 5 <package id="Microsoft.AspNet.WebApi.Core" version="5.2.3" targetFramework="net45" /> 6 6 <package id="Microsoft.AspNet.WebApi.WebHost" version="5.2.3" targetFramework="net45" /> 7 <package id="Newtonsoft.Json" version=" 6.0.4" targetFramework="net45" />7 <package id="Newtonsoft.Json" version="7.0.1" targetFramework="net45" /> 8 8 </packages> -
trunk/sources/HeuristicLab.Services.WebApp/3.3/Configs/BundleConfig.cs
r12514 r12546 89 89 .IncludeDirectory("~/WebApp/shared/services", "*.js", true) 90 90 .IncludeDirectory("~/WebApp/shared/directives", "*.js", true) 91 .IncludeDirectory("~/WebApp/shared/filter", "*.js", true) 91 92 .IncludeDirectory("~/WebApp/shared/menu", "*.js", true) 92 93 ); -
trunk/sources/HeuristicLab.Services.WebApp/3.3/HeuristicLab.Services.WebApp-3.3.csproj
r12523 r12546 23 23 <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir> 24 24 <RestorePackages>true</RestorePackages> 25 <WebGreaseLibPath>..\..\packages\WebGrease.1.5.2\lib</WebGreaseLibPath>26 25 </PropertyGroup> 27 26 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> … … 44 43 </PropertyGroup> 45 44 <ItemGroup> 46 <Reference Include="Antlr3.Runtime, Version=3. 4.1.9004, Culture=neutral, PublicKeyToken=eb42632606e9261f, processorArchitecture=MSIL">47 < HintPath>..\..\packages\Antlr.3.4.1.9004\lib\Antlr3.Runtime.dll</HintPath>48 < Private>True</Private>45 <Reference Include="Antlr3.Runtime, Version=3.5.0.2, Culture=neutral, PublicKeyToken=eb42632606e9261f, processorArchitecture=MSIL"> 46 <SpecificVersion>False</SpecificVersion> 47 <HintPath>..\..\packages\Antlr.3.5.0.2\lib\Antlr3.Runtime.dll</HintPath> 49 48 </Reference> 50 49 <Reference Include="Microsoft.CSharp" /> … … 53 52 <Private>True</Private> 54 53 </Reference> 55 <Reference Include="Newtonsoft.Json, Version= 6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">56 < HintPath>..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll</HintPath>57 < Private>True</Private>54 <Reference Include="Newtonsoft.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> 55 <SpecificVersion>False</SpecificVersion> 56 <HintPath>..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll</HintPath> 58 57 </Reference> 59 58 <Reference Include="System" /> … … 118 117 </Reference> 119 118 <Reference Include="System.Net.Http.WebRequest"> 120 </Reference>121 <Reference Include="WebGrease, Version=1.5.2.14234, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">122 <HintPath>..\..\packages\WebGrease.1.5.2\lib\WebGrease.dll</HintPath>123 <Private>True</Private>124 119 </Reference> 125 120 </ItemGroup> … … 169 164 <Content Include="WebApp\libs\smoothScroll\smoothScroll.js" /> 170 165 <Content Include="WebApp\app.js" /> 171 <Content Include="WebApp\plugins\login\login.css"> 172 <CopyToOutputDirectory>Always</CopyToOutputDirectory> 173 </Content> 174 <Content Include="WebApp\plugins\login\login.js"> 175 <CopyToOutputDirectory>Always</CopyToOutputDirectory> 176 </Content> 177 <Content Include="WebApp\plugins\login\loginCtrl.js"> 178 <CopyToOutputDirectory>Always</CopyToOutputDirectory> 179 </Content> 166 <Content Include="WebApp\plugins\about\about.js" /> 167 <Content Include="WebApp\plugins\about\aboutCtrl.js" /> 168 <Content Include="WebApp\plugins\login\login.css" /> 169 <Content Include="WebApp\plugins\login\login.js" /> 170 <Content Include="WebApp\plugins\login\loginCtrl.js" /> 180 171 <Content Include="WebApp\plugins\plugins\pluginsExceptionCtrl.js" /> 181 <Content Include="WebApp\plugins\plugins\plugins.js"> 182 <CopyToOutputDirectory>Always</CopyToOutputDirectory> 183 </Content> 184 <Content Include="WebApp\plugins\plugins\pluginsCtrl.js"> 185 <CopyToOutputDirectory>Always</CopyToOutputDirectory> 186 </Content> 172 <Content Include="WebApp\plugins\plugins\plugins.js" /> 173 <Content Include="WebApp\plugins\plugins\pluginsCtrl.js" /> 187 174 <Content Include="WebApp\plugins\plugins\pluginsService.js" /> 188 175 <Content Include="WebApp\shared\directives\flot.js" /> … … 226 213 <Content Include="WebApp\libs\bootstrap\fonts\glyphicons-halflings-regular.woff" /> 227 214 <Content Include="WebApp\libs\bootstrap\fonts\glyphicons-halflings-regular.woff2" /> 215 <Content Include="WebApp\shared\filter\filters.js" /> 228 216 <Content Include="WebApp\shared\images\HeuristicLab-Logo.png" /> 229 217 <Content Include="WebApp\shared\layout\layout.cshtml" /> … … 233 221 <Content Include="WebApp\shared\menu\menu.cshtml" /> 234 222 <Content Include="WebApp\shared\restricted\empty.cshtml" /> 235 <Content Include="WebApp\plugins\login\login.cshtml"> 236 <CopyToOutputDirectory>Always</CopyToOutputDirectory> 237 </Content> 238 <Content Include="WebApp\plugins\plugins\plugins.cshtml"> 239 <CopyToOutputDirectory>Always</CopyToOutputDirectory> 240 </Content> 241 <Content Include="WebApp\plugins\plugins\Web.config"> 242 <CopyToOutputDirectory>Always</CopyToOutputDirectory> 243 </Content> 223 <Content Include="WebApp\plugins\login\login.cshtml" /> 224 <Content Include="WebApp\plugins\plugins\plugins.cshtml" /> 225 <Content Include="WebApp\plugins\plugins\Web.config" /> 244 226 </ItemGroup> 245 227 <ItemGroup> … … 259 241 <Name>HeuristicLab.Services.Hive-3.3</Name> 260 242 </ProjectReference> 243 </ItemGroup> 244 <ItemGroup> 245 <Content Include="WebApp\plugins\about\about.cshtml" /> 261 246 </ItemGroup> 262 247 <PropertyGroup> -
trunk/sources/HeuristicLab.Services.WebApp/3.3/Web.config
r12445 r12546 59 59 <dependentAssembly> 60 60 <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" /> 61 <bindingRedirect oldVersion="0.0.0.0- 6.0.0.0" newVersion="6.0.0.0" />61 <bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="7.0.0.0" /> 62 62 </dependentAssembly> 63 63 <dependentAssembly> … … 67 67 <dependentAssembly> 68 68 <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" /> 69 <bindingRedirect oldVersion="0.0.0.0-1. 5.2.14234" newVersion="1.5.2.14234" />69 <bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" /> 70 70 </dependentAssembly> 71 71 <dependentAssembly> … … 81 81 <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" /> 82 82 </dependentAssembly> 83 <dependentAssembly> 84 <assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" culture="neutral" /> 85 <bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" /> 86 </dependentAssembly> 83 87 </assemblyBinding> 84 88 </runtime> -
trunk/sources/HeuristicLab.Services.WebApp/3.3/packages.config
r12430 r12546 1 1 <?xml version="1.0" encoding="utf-8"?> 2 2 <packages> 3 <package id="Antlr" version="3. 4.1.9004" targetFramework="net45" />3 <package id="Antlr" version="3.5.0.2" targetFramework="net45" /> 4 4 <package id="Microsoft.AspNet.Mvc" version="5.2.3" targetFramework="net45" /> 5 5 <package id="Microsoft.AspNet.Razor" version="3.2.3" targetFramework="net45" /> … … 11 11 <package id="Microsoft.AspNet.WebPages" version="3.2.3" targetFramework="net45" /> 12 12 <package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net45" /> 13 <package id="Newtonsoft.Json" version=" 6.0.8" targetFramework="net45" />14 <package id="WebGrease" version="1. 5.2" targetFramework="net45" />13 <package id="Newtonsoft.Json" version="7.0.1" targetFramework="net45" /> 14 <package id="WebGrease" version="1.6.0" targetFramework="net45" /> 15 15 </packages>
Note: See TracChangeset
for help on using the changeset viewer.