Free cookie consent management tool by TermsFeed Policy Generator

Changeset 9604


Ignore:
Timestamp:
06/11/13 10:40:40 (11 years ago)
Author:
pfleck
Message:

#2063:
Set up basic webpage layout based on WebApplication branch.
Added Asp.Net MVC packages and some helper packages.
Implemented login.

Location:
branches/HiveStatistics/sources
Files:
243 added
10 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveStatistics/sources/HeuristicLab 3.3 Services.sln

    r9589 r9604  
    6060Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Services.Hive.SelfHost-3.3", "HeuristicLab.Services.Hive.SelfHost\3.3\HeuristicLab.Services.Hive.SelfHost-3.3.csproj", "{DAACE3EB-5D88-419D-9EEC-5707E273491A}"
    6161EndProject
    62 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Services.Hive.Statistics-3.3", "HeuristicLab.Services.Hive.Statistics\3.3\HeuristicLab.Services.Hive.Statistics-3.3.csproj", "{33FF5AAD-96B1-45F9-8A9F-38A0DABCCA1D}"
     62Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Services.Hive.Statistics-3.3", "HeuristicLab.Services.Hive.Statistics\3.3\HeuristicLab.Services.Hive.Statistics-3.3.csproj", "{070D6549-E33A-4466-9368-70177DF454BD}"
    6363EndProject
    6464Global
     
    234234    {DAACE3EB-5D88-419D-9EEC-5707E273491A}.Release|x64.ActiveCfg = Release|Any CPU
    235235    {DAACE3EB-5D88-419D-9EEC-5707E273491A}.Release|x86.ActiveCfg = Release|Any CPU
    236     {33FF5AAD-96B1-45F9-8A9F-38A0DABCCA1D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    237     {33FF5AAD-96B1-45F9-8A9F-38A0DABCCA1D}.Debug|Any CPU.Build.0 = Debug|Any CPU
    238     {33FF5AAD-96B1-45F9-8A9F-38A0DABCCA1D}.Debug|x64.ActiveCfg = Debug|Any CPU
    239     {33FF5AAD-96B1-45F9-8A9F-38A0DABCCA1D}.Debug|x86.ActiveCfg = Debug|Any CPU
    240     {33FF5AAD-96B1-45F9-8A9F-38A0DABCCA1D}.Release|Any CPU.ActiveCfg = Release|Any CPU
    241     {33FF5AAD-96B1-45F9-8A9F-38A0DABCCA1D}.Release|Any CPU.Build.0 = Release|Any CPU
    242     {33FF5AAD-96B1-45F9-8A9F-38A0DABCCA1D}.Release|x64.ActiveCfg = Release|Any CPU
    243     {33FF5AAD-96B1-45F9-8A9F-38A0DABCCA1D}.Release|x86.ActiveCfg = Release|Any CPU
     236    {070D6549-E33A-4466-9368-70177DF454BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
     237    {070D6549-E33A-4466-9368-70177DF454BD}.Debug|Any CPU.Build.0 = Debug|Any CPU
     238    {070D6549-E33A-4466-9368-70177DF454BD}.Debug|x64.ActiveCfg = Debug|Any CPU
     239    {070D6549-E33A-4466-9368-70177DF454BD}.Debug|x86.ActiveCfg = Debug|Any CPU
     240    {070D6549-E33A-4466-9368-70177DF454BD}.Release|Any CPU.ActiveCfg = Release|Any CPU
     241    {070D6549-E33A-4466-9368-70177DF454BD}.Release|Any CPU.Build.0 = Release|Any CPU
     242    {070D6549-E33A-4466-9368-70177DF454BD}.Release|x64.ActiveCfg = Release|Any CPU
     243    {070D6549-E33A-4466-9368-70177DF454BD}.Release|x86.ActiveCfg = Release|Any CPU
    244244  EndGlobalSection
    245245  GlobalSection(SolutionProperties) = preSolution
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Controllers/HomeController.cs

    r9589 r9604  
    2424namespace HeuristicLab.Services.Hive.Statistics.Controllers {
    2525  public class HomeController : Controller {
    26     //
    27     // GET: /Home/
     26    public ActionResult Index() {
     27      ViewBag.Message = "Modify this template to jump-start your ASP.NET MVC application.";
    2828
    29     public ActionResult Index() {
    3029      return View();
    3130    }
    3231
     32    public ActionResult About() {
     33      ViewBag.Message = "Your app description page.";
     34
     35      return View();
     36    }
     37
     38    public ActionResult Contact() {
     39      ViewBag.Message = "Your contact page.";
     40
     41      return View();
     42    }
    3343  }
    3444}
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Global.asax.cs

    r9589 r9604  
    2121
    2222using System.Web.Mvc;
     23using System.Web.Optimization;
    2324using System.Web.Routing;
    2425
    2526namespace HeuristicLab.Services.Hive.Statistics {
    26   // Note: For instructions on enabling IIS6 or IIS7 classic mode,
    27   // visit http://go.microsoft.com/?LinkId=9394801
    2827  public class MvcApplication : System.Web.HttpApplication {
    2928    protected void Application_Start() {
     
    3231      FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
    3332      RouteConfig.RegisterRoutes(RouteTable.Routes);
     33      BundleConfig.RegisterBundles(BundleTable.Bundles);
    3434    }
    3535  }
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/HeuristicLab.Services.Hive.Statistics-3.3.csproj

    r9589 r9604  
    88    </ProductVersion>
    99    <SchemaVersion>2.0</SchemaVersion>
    10     <ProjectGuid>{33FF5AAD-96B1-45F9-8A9F-38A0DABCCA1D}</ProjectGuid>
     10    <ProjectGuid>{070D6549-E33A-4466-9368-70177DF454BD}</ProjectGuid>
    1111    <ProjectTypeGuids>{E3E379DF-F4C6-4180-9B81-6769533ABE47};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
    1212    <OutputType>Library</OutputType>
    1313    <AppDesignerFolder>Properties</AppDesignerFolder>
    1414    <RootNamespace>HeuristicLab.Services.Hive.Statistics</RootNamespace>
    15     <AssemblyName>HeuristicLab.Services.Hive.Statistics</AssemblyName>
     15    <AssemblyName>HeuristicLab.Services.Hive.Statistics-3.3</AssemblyName>
    1616    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
    1717    <MvcBuildViews>false</MvcBuildViews>
     
    4242    <Reference Include="Microsoft.CSharp" />
    4343    <Reference Include="System" />
    44     <Reference Include="System.Data" />
    45     <Reference Include="System.Drawing" />
    46     <Reference Include="System.Web.DynamicData" />
    47     <Reference Include="System.Web.Entity" />
    4844    <Reference Include="System.Web.ApplicationServices" />
    4945    <Reference Include="System.ComponentModel.DataAnnotations" />
    5046    <Reference Include="System.Core" />
    51     <Reference Include="System.Data.DataSetExtensions" />
    52     <Reference Include="System.Xml.Linq" />
    5347    <Reference Include="System.Web" />
    5448    <Reference Include="System.Web.Extensions" />
    5549    <Reference Include="System.Web.Abstractions" />
    5650    <Reference Include="System.Web.Routing" />
    57     <Reference Include="System.Xml" />
    5851    <Reference Include="System.Configuration" />
     52    <Reference Include="System.Transactions" />
    5953    <Reference Include="System.Web.Services" />
    6054    <Reference Include="System.EnterpriseServices" />
    6155    <Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
    6256      <Private>True</Private>
    63       <HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
     57      <HintPath>..\..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
     58    </Reference>
     59    <Reference Include="Microsoft.Web.Mvc.FixedDisplayModes, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
     60      <Private>True</Private>
     61      <HintPath>..\..\packages\Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0\lib\net40\Microsoft.Web.Mvc.FixedDisplayModes.dll</HintPath>
    6462    </Reference>
    6563    <Reference Include="System.Web.Helpers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
    6664      <Private>True</Private>
    67       <HintPath>..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.Helpers.dll</HintPath>
     65      <HintPath>..\..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.Helpers.dll</HintPath>
    6866    </Reference>
    6967    <Reference Include="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
    7068      <Private>True</Private>
    71       <HintPath>..\packages\Microsoft.AspNet.Mvc.4.0.20710.0\lib\net40\System.Web.Mvc.dll</HintPath>
     69      <HintPath>..\..\packages\Microsoft.AspNet.Mvc.4.0.20710.0\lib\net40\System.Web.Mvc.dll</HintPath>
     70    </Reference>
     71    <Reference Include="System.Web.Optimization">
     72      <HintPath>..\..\packages\Microsoft.AspNet.Web.Optimization.1.0.0\lib\net40\System.Web.Optimization.dll</HintPath>
    7273    </Reference>
    7374    <Reference Include="System.Web.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
    7475      <Private>True</Private>
    75       <HintPath>..\packages\Microsoft.AspNet.Razor.2.0.20715.0\lib\net40\System.Web.Razor.dll</HintPath>
     76      <HintPath>..\..\packages\Microsoft.AspNet.Razor.2.0.20715.0\lib\net40\System.Web.Razor.dll</HintPath>
    7677    </Reference>
    7778    <Reference Include="System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
    7879      <Private>True</Private>
    79       <HintPath>..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.WebPages.dll</HintPath>
    80     </Reference>
    81     <Reference Include="System.Web.WebPages.Deployment, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
    82       <Private>True</Private>
    83       <HintPath>..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.WebPages.Deployment.dll</HintPath>
     80      <HintPath>..\..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.WebPages.dll</HintPath>
    8481    </Reference>
    8582    <Reference Include="System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
    8683      <Private>True</Private>
    87       <HintPath>..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.WebPages.Razor.dll</HintPath>
    88     </Reference>
    89   </ItemGroup>
    90   <ItemGroup>
     84      <HintPath>..\..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.WebPages.Razor.dll</HintPath>
     85    </Reference>
     86    <Reference Include="WebMatrix.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
     87      <Private>True</Private>
     88      <HintPath>..\..\packages\Microsoft.AspNet.WebPages.Data.2.0.20710.0\lib\net40\WebMatrix.Data.dll</HintPath>
     89    </Reference>
     90    <Reference Include="WebMatrix.WebData, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
     91      <Private>True</Private>
     92      <HintPath>..\..\packages\Microsoft.AspNet.WebPages.WebData.2.0.20710.0\lib\net40\WebMatrix.WebData.dll</HintPath>
     93    </Reference>
     94    <Reference Include="WebGrease">
     95      <Private>True</Private>
     96      <HintPath>..\..\packages\WebGrease.1.3.0\lib\WebGrease.dll</HintPath>
     97    </Reference>
     98    <Reference Include="Antlr3.Runtime">
     99      <Private>True</Private>
     100      <HintPath>..\..\packages\WebGrease.1.3.0\lib\Antlr3.Runtime.dll</HintPath>
     101    </Reference>
     102  </ItemGroup>
     103  <ItemGroup>
     104    <Compile Include="App_Start\BundleConfig.cs" />
     105    <Compile Include="App_Start\FilterConfig.cs" />
     106    <Compile Include="App_Start\RouteConfig.cs" />
     107    <Compile Include="Controllers\AccountController.cs" />
    91108    <Compile Include="Controllers\HomeController.cs" />
    92109    <Compile Include="Global.asax.cs">
    93110      <DependentUpon>Global.asax</DependentUpon>
    94111    </Compile>
     112    <Compile Include="Helper\HtmMenulHelper.cs" />
     113    <Compile Include="Models\AccountModels.cs" />
    95114    <Compile Include="Properties\AssemblyInfo.cs" />
    96115    <None Include="Properties\AssemblyInfo.cs.frame" />
    97     <Content Include="Views\Home\Index.cshtml" />
    98     <None Include="Properties\PublishProfiles\Hive.Statistics-3.3.pubxml" />
    99   </ItemGroup>
    100   <ItemGroup>
    101     <Compile Include="App_Start\FilterConfig.cs" />
    102     <Compile Include="App_Start\RouteConfig.cs" />
     116  </ItemGroup>
     117  <ItemGroup>
     118    <Content Include="Content\themes\base\images\ui-bg_flat_0_aaaaaa_40x100.png" />
     119    <Content Include="Content\themes\base\images\ui-bg_flat_75_ffffff_40x100.png" />
     120    <Content Include="Content\themes\base\images\ui-bg_glass_55_fbf9ee_1x400.png" />
     121    <Content Include="Content\themes\base\images\ui-bg_glass_65_ffffff_1x400.png" />
     122    <Content Include="Content\themes\base\images\ui-bg_glass_75_dadada_1x400.png" />
     123    <Content Include="Content\themes\base\images\ui-bg_glass_75_e6e6e6_1x400.png" />
     124    <Content Include="Content\themes\base\images\ui-bg_glass_95_fef1ec_1x400.png" />
     125    <Content Include="Content\themes\base\images\ui-bg_highlight-soft_75_cccccc_1x100.png" />
     126    <Content Include="Content\themes\base\images\ui-icons_222222_256x240.png" />
     127    <Content Include="Content\themes\base\images\ui-icons_2e83ff_256x240.png" />
     128    <Content Include="Content\themes\base\images\ui-icons_454545_256x240.png" />
     129    <Content Include="Content\themes\base\images\ui-icons_888888_256x240.png" />
     130    <Content Include="Content\themes\base\images\ui-icons_cd0a0a_256x240.png" />
     131    <Content Include="Content\themes\base\jquery-ui.css" />
     132    <Content Include="Content\themes\base\jquery.ui.accordion.css" />
     133    <Content Include="Content\themes\base\jquery.ui.all.css" />
     134    <Content Include="Content\themes\base\jquery.ui.autocomplete.css" />
     135    <Content Include="Content\themes\base\jquery.ui.base.css" />
     136    <Content Include="Content\themes\base\jquery.ui.button.css" />
     137    <Content Include="Content\themes\base\jquery.ui.core.css" />
     138    <Content Include="Content\themes\base\jquery.ui.datepicker.css" />
     139    <Content Include="Content\themes\base\jquery.ui.dialog.css" />
     140    <Content Include="Content\themes\base\jquery.ui.progressbar.css" />
     141    <Content Include="Content\themes\base\jquery.ui.resizable.css" />
     142    <Content Include="Content\themes\base\jquery.ui.selectable.css" />
     143    <Content Include="Content\themes\base\jquery.ui.slider.css" />
     144    <Content Include="Content\themes\base\jquery.ui.tabs.css" />
     145    <Content Include="Content\themes\base\jquery.ui.theme.css" />
     146    <Content Include="Content\themes\base\minified\images\ui-bg_flat_0_aaaaaa_40x100.png" />
     147    <Content Include="Content\themes\base\minified\images\ui-bg_flat_75_ffffff_40x100.png" />
     148    <Content Include="Content\themes\base\minified\images\ui-bg_glass_55_fbf9ee_1x400.png" />
     149    <Content Include="Content\themes\base\minified\images\ui-bg_glass_65_ffffff_1x400.png" />
     150    <Content Include="Content\themes\base\minified\images\ui-bg_glass_75_dadada_1x400.png" />
     151    <Content Include="Content\themes\base\minified\images\ui-bg_glass_75_e6e6e6_1x400.png" />
     152    <Content Include="Content\themes\base\minified\images\ui-bg_glass_95_fef1ec_1x400.png" />
     153    <Content Include="Content\themes\base\minified\images\ui-bg_highlight-soft_75_cccccc_1x100.png" />
     154    <Content Include="Content\themes\base\minified\images\ui-icons_222222_256x240.png" />
     155    <Content Include="Content\themes\base\minified\images\ui-icons_2e83ff_256x240.png" />
     156    <Content Include="Content\themes\base\minified\images\ui-icons_454545_256x240.png" />
     157    <Content Include="Content\themes\base\minified\images\ui-icons_888888_256x240.png" />
     158    <Content Include="Content\themes\base\minified\images\ui-icons_cd0a0a_256x240.png" />
     159    <Content Include="Content\themes\base\minified\jquery-ui.min.css" />
     160    <Content Include="Content\themes\base\minified\jquery.ui.accordion.min.css" />
     161    <Content Include="Content\themes\base\minified\jquery.ui.autocomplete.min.css" />
     162    <Content Include="Content\themes\base\minified\jquery.ui.button.min.css" />
     163    <Content Include="Content\themes\base\minified\jquery.ui.core.min.css" />
     164    <Content Include="Content\themes\base\minified\jquery.ui.datepicker.min.css" />
     165    <Content Include="Content\themes\base\minified\jquery.ui.dialog.min.css" />
     166    <Content Include="Content\themes\base\minified\jquery.ui.progressbar.min.css" />
     167    <Content Include="Content\themes\base\minified\jquery.ui.resizable.min.css" />
     168    <Content Include="Content\themes\base\minified\jquery.ui.selectable.min.css" />
     169    <Content Include="Content\themes\base\minified\jquery.ui.slider.min.css" />
     170    <Content Include="Content\themes\base\minified\jquery.ui.tabs.min.css" />
     171    <Content Include="Content\themes\base\minified\jquery.ui.theme.min.css" />
     172    <Content Include="Content\hl-logo.png" />
    103173    <Content Include="Global.asax" />
     174    <None Include="Scripts\jquery-1.8.2.intellisense.js" />
     175    <Content Include="HeuristicLab.ico" />
     176    <Content Include="Scripts\jquery-1.8.2.js" />
     177    <Content Include="Scripts\jquery-1.8.2.min.js" />
     178    <None Include="Scripts\jquery.validate-vsdoc.js" />
     179    <Content Include="Scripts\jquery-ui-1.8.24.js" />
     180    <Content Include="Scripts\jquery-ui-1.8.24.min.js" />
     181    <Content Include="Scripts\jquery.unobtrusive-ajax.js" />
     182    <Content Include="Scripts\jquery.unobtrusive-ajax.min.js" />
     183    <Content Include="Scripts\jquery.validate.js" />
     184    <Content Include="Scripts\jquery.validate.min.js" />
     185    <Content Include="Scripts\jquery.validate.unobtrusive.js" />
     186    <Content Include="Scripts\jquery.validate.unobtrusive.min.js" />
     187    <Content Include="Scripts\modernizr-2.6.2.js" />
    104188    <Content Include="Web.config" />
    105189    <Content Include="Web.Debug.config">
     
    109193      <DependentUpon>Web.config</DependentUpon>
    110194    </Content>
     195    <Content Include="Content\Site.css" />
     196    <Content Include="Scripts\_references.js" />
     197    <Content Include="Views\_ViewStart.cshtml" />
     198    <Content Include="Views\Account\Login.cshtml" />
     199    <Content Include="Views\Home\About.cshtml" />
     200    <Content Include="Views\Home\Contact.cshtml" />
     201    <Content Include="Views\Home\Index.cshtml" />
     202    <Content Include="Views\Shared\Error.cshtml" />
     203    <Content Include="Views\Shared\_LoginPartial.cshtml" />
     204    <Content Include="Views\Shared\_Layout.cshtml" />
    111205    <Content Include="Views\Web.config" />
    112206  </ItemGroup>
    113207  <ItemGroup>
    114208    <Folder Include="App_Data\" />
    115     <Folder Include="Models\" />
     209    <Folder Include="Filters\" />
    116210  </ItemGroup>
    117211  <ItemGroup>
     
    136230          <DevelopmentServerPort>0</DevelopmentServerPort>
    137231          <DevelopmentServerVPath>/</DevelopmentServerVPath>
    138           <IISUrl>http://localhost:1102/</IISUrl>
     232          <IISUrl>http://localhost:2088/</IISUrl>
    139233          <NTLMAuthentication>False</NTLMAuthentication>
    140234          <UseCustomServer>False</UseCustomServer>
     
    146240    </VisualStudio>
    147241  </ProjectExtensions>
     242  <PropertyGroup>
     243    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     244set ProjectDir=$(ProjectDir)
     245set SolutionDir=$(SolutionDir)
     246set Outdir=$(Outdir)
     247
     248call PreBuildEvent.cmd</PreBuildEvent>
     249  </PropertyGroup>
    148250  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
    149251       Other similar extension points exist, see Microsoft.Common.targets.
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Properties/AssemblyInfo.cs.frame

    r9589 r9604  
    2727// set of attributes. Change these attribute values to modify the information
    2828// associated with an assembly.
    29 [assembly: AssemblyTitle("HeuristicLab.Services.Hive".Statistics)]
    30 [assembly: AssemblyDescription("Statistics for HeuristicLab.Hive services")]
     29[assembly: AssemblyTitle("HeuristicLab.Services.Hive.Statistics-3.3")]
     30[assembly: AssemblyDescription("HeuristicLab Hive Statistics Web")]
    3131[assembly: AssemblyConfiguration("")]
    3232[assembly: AssemblyCompany("")]
     
    4242
    4343// The following GUID is for the ID of the typelib if this project is exposed to COM
    44 [assembly: Guid("99625ae0-41ae-4f64-930c-dec4a2e53956")]
     44[assembly: Guid("e2320765-b1ec-43b7-8609-481933fba185")]
    4545
    4646// Version information for an assembly consists of the following four values:
     
    5151//      Revision
    5252//
    53 // You can specify all the values or you can default the Build and Revision Numbers
     53// You can specify all the values or you can default the Revision and Build Numbers
    5454// by using the '*' as shown below:
    55 // [assembly: AssemblyVersion("1.0.*")]
    5655[assembly: AssemblyVersion("3.3.0.0")]
    5756[assembly: AssemblyFileVersion("3.3.7.$WCREV$")]
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Properties/PublishProfiles/Hive.Statistics-3.3.pubxml

    r9589 r9604  
    1919    <UserName />
    2020    <_SavePWD>False</_SavePWD>
     21    <PublishDatabaseSettings>
     22      <Objects xmlns="">
     23        <ObjectGroup Name="HeuristicLab.Authentication" Order="3" Enabled="False">
     24          <Destination Path="" />
     25          <Object Type="DbDacFx">
     26            <PreSource Path="data source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication" includeData="False" />
     27            <Source Path="$(IntermediateOutputPath)AutoScripts\HeuristicLab.Authentication_IncrementalSchemaOnly.dacpac" dacpacAction="Deploy" />
     28          </Object>
     29          <UpdateFrom Type="Web.Config">
     30            <Source MatchValue="data source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication" MatchAttributes="$(UpdateFromConnectionStringAttributes)" />
     31          </UpdateFrom>
     32        </ObjectGroup>
     33      </Objects>
     34    </PublishDatabaseSettings>
    2135  </PropertyGroup>
    2236</Project>
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Views/Home/Index.cshtml

    r9589 r9604  
    11@{
    2     ViewBag.Title = "Index";
     2    ViewBag.Title = "Home Page";
    33}
     4@*@section featured {
     5    <section class="featured">
     6        <div class="content-wrapper">
     7            <hgroup class="title">
     8                <h1>@ViewBag.Title.</h1>
     9                <h2>@ViewBag.Message</h2>
     10            </hgroup>
     11            <p>
     12                To learn more about ASP.NET MVC visit
     13                <a href="http://asp.net/mvc" title="ASP.NET MVC Website">http://asp.net/mvc</a>.
     14                The page features <mark>videos, tutorials, and samples</mark> to help you get the most from ASP.NET MVC.
     15                If you have any questions about ASP.NET MVC visit
     16                <a href="http://forums.asp.net/1146.aspx/1?MVC" title="ASP.NET MVC Forum">our forums</a>.
     17            </p>
     18        </div>
     19    </section>
     20}*@
     21<h3>We suggest the following:</h3>
     22<ol class="round">
     23    <li class="one">
     24        <h5>Getting Started</h5>
     25        ASP.NET MVC gives you a powerful, patterns-based way to build dynamic websites that
     26        enables a clean separation of concerns and that gives you full control over markup
     27        for enjoyable, agile development. ASP.NET MVC includes many features that enable
     28        fast, TDD-friendly development for creating sophisticated applications that use
     29        the latest web standards.
     30        <a href="http://go.microsoft.com/fwlink/?LinkId=245151">Learn more…</a>
     31    </li>
    432
    5 <h2>HeuristicLab Hive</h2>
     33    <li class="two">
     34        <h5>Add NuGet packages and jump-start your coding</h5>
     35        NuGet makes it easy to install and update free libraries and tools.
     36        <a href="http://go.microsoft.com/fwlink/?LinkId=245153">Learn more…</a>
     37    </li>
    638
    7 <p>Hello, World!</p>
     39    <li class="three">
     40        <h5>Find Web Hosting</h5>
     41        You can easily find a web hosting company that offers the right mix of features
     42        and price for your applications.
     43        <a href="http://go.microsoft.com/fwlink/?LinkId=245157">Learn more…</a>
     44    </li>
     45</ol>
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Views/Web.config

    r9589 r9604  
    1616        <add namespace="System.Web.Mvc.Ajax" />
    1717        <add namespace="System.Web.Mvc.Html" />
     18        <add namespace="System.Web.Optimization"/>
    1819        <add namespace="System.Web.Routing" />
    1920      </namespaces>
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Web.config

    r9589 r9604  
    44  http://go.microsoft.com/fwlink/?LinkId=169433
    55  -->
    6 
    76<configuration>
     7  <connectionStrings>
     8    <add name="HeuristicLab.Authentication" connectionString="data source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication" />
     9    <!--<add name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" connectionString="Data Source=localhost;Initial Catalog=HeuristicLab.Hive-3.3;Integrated Security=True;" providerName="System.Data.SqlClient" />-->
     10  </connectionStrings>
    811  <appSettings>
    912    <add key="webpages:Version" value="2.0.0.0" />
     
    1316    <add key="UnobtrusiveJavaScriptEnabled" value="true" />
    1417  </appSettings>
    15 
    1618  <system.web>
    17    
    1819    <compilation debug="true" targetFramework="4.0" />
    19 
     20    <authentication mode="Forms">
     21      <forms loginUrl="~/Account/Login" timeout="2880" />
     22    </authentication>
     23    <membership>
     24      <providers>
     25        <clear />
     26        <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="HeuristicLab.Authentication" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="HeuristicLab.Authentication" />
     27      </providers>
     28    </membership>
     29    <roleManager enabled="true">
     30      <providers>
     31        <clear />
     32        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" />
     33      </providers>
     34    </roleManager>
    2035    <pages>
    2136      <namespaces>
     
    2439        <add namespace="System.Web.Mvc.Ajax" />
    2540        <add namespace="System.Web.Mvc.Html" />
     41        <add namespace="System.Web.Optimization" />
    2642        <add namespace="System.Web.Routing" />
    2743        <add namespace="System.Web.WebPages" />
     
    2945    </pages>
    3046  </system.web>
    31 
    3247  <system.webServer>
    3348    <validation validateIntegratedModeConfiguration="false" />
    34    
    3549    <modules runAllManagedModulesForAllRequests="true" />
    36    
    3750  </system.webServer>
     51  <runtime>
     52    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
     53      <dependentAssembly>
     54        <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
     55        <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
     56      </dependentAssembly>
     57      <dependentAssembly>
     58        <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
     59        <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
     60      </dependentAssembly>
     61      <dependentAssembly>
     62        <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
     63        <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
     64      </dependentAssembly>
     65      <dependentAssembly>
     66        <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
     67        <bindingRedirect oldVersion="0.0.0.0-1.3.0.0" newVersion="1.3.0.0" />
     68      </dependentAssembly>
     69    </assemblyBinding>
     70  </runtime>
    3871</configuration>
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/packages.config

    r9589 r9604  
    11<?xml version="1.0" encoding="utf-8"?>
    22<packages>
     3  <package id="jQuery" version="1.8.2" targetFramework="net40" />
     4  <package id="jQuery.UI.Combined" version="1.8.24" targetFramework="net40" />
     5  <package id="jQuery.Validation" version="1.10.0" targetFramework="net40" />
    36  <package id="Microsoft.AspNet.Mvc" version="4.0.20710.0" targetFramework="net40" />
     7  <package id="Microsoft.AspNet.Mvc.FixedDisplayModes" version="1.0.0" targetFramework="net40" />
    48  <package id="Microsoft.AspNet.Razor" version="2.0.20715.0" targetFramework="net40" />
     9  <package id="Microsoft.AspNet.Web.Optimization" version="1.0.0" targetFramework="net40" />
    510  <package id="Microsoft.AspNet.WebPages" version="2.0.20710.0" targetFramework="net40" />
     11  <package id="Microsoft.AspNet.WebPages.Data" version="2.0.20710.0" targetFramework="net40" />
     12  <package id="Microsoft.AspNet.WebPages.WebData" version="2.0.20710.0" targetFramework="net40" />
     13  <package id="Microsoft.jQuery.Unobtrusive.Ajax" version="2.0.30116.0" targetFramework="net40" />
     14  <package id="Microsoft.jQuery.Unobtrusive.Validation" version="2.0.30116.0" targetFramework="net40" />
    615  <package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net40" />
     16  <package id="Modernizr" version="2.6.2" targetFramework="net40" />
     17  <package id="WebGrease" version="1.3.0" targetFramework="net40" />
    718</packages>
Note: See TracChangeset for help on using the changeset viewer.