Skip to content

Commit

Permalink
Initial
Browse files Browse the repository at this point in the history
  • Loading branch information
lucapivato committed Mar 22, 2018
0 parents commit 49d9af0
Show file tree
Hide file tree
Showing 511 changed files with 52,214 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.svn
.vs

*.suo

*.user
bin
obj
packages
/UploadFiles/UploadFiles/Properties/PublishProfiles/*.pubxml
22 changes: 22 additions & 0 deletions BackgroundTasks/BackgroundTasks.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.40629.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BackgroundTasks", "BackgroundTasks\BackgroundTasks.csproj", "{BA22EE1E-C853-40B1-A5C1-ED2B10300AC8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{BA22EE1E-C853-40B1-A5C1-ED2B10300AC8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BA22EE1E-C853-40B1-A5C1-ED2B10300AC8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BA22EE1E-C853-40B1-A5C1-ED2B10300AC8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BA22EE1E-C853-40B1-A5C1-ED2B10300AC8}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
146 changes: 146 additions & 0 deletions BackgroundTasks/BackgroundTasks/BackgroundTasks.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>
</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{BA22EE1E-C853-40B1-A5C1-ED2B10300AC8}</ProjectGuid>
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ParallelSorting</RootNamespace>
<AssemblyName>ParallelSorting</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<UseIISExpress>true</UseIISExpress>
<IISExpressSSLPort />
<IISExpressAnonymousAuthentication />
<IISExpressWindowsAuthentication />
<IISExpressUseClassicPipelineMode />
<UseGlobalApplicationHostFile />
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DeployEncryptKey>test</DeployEncryptKey>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Content Include="Default.html" />
<Content Include="Default.json" />
<None Include="Properties\PublishProfiles\IIS.pubxml" />
<None Include="Web.Debug.config">
<DependentUpon>Web.config</DependentUpon>
</None>
<None Include="Web.Release.config">
<DependentUpon>Web.config</DependentUpon>
</None>
</ItemGroup>
<ItemGroup>
<None Include="Resources\64x64.png" />
<Content Include="Web.config" />
</ItemGroup>
<ItemGroup>
<Compile Include="MainPage.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="MainPage.Designer.cs">
<DependentUpon>MainPage.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="SortBox.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="SortBox.Designer.cs">
<DependentUpon>SortBox.cs</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<Folder Include="Themes\" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="System.Web" />
<Reference Include="System.Windows.Forms" />
<Reference Include="Wisej.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=17bef35e11b84171, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\Development\1.4\Wisej\bin\Wisej.Core.dll</HintPath>
</Reference>
<Reference Include="Wisej.Web, Version=1.0.0.0, Culture=neutral, PublicKeyToken=17bef35e11b84171, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\Development\1.4\Wisej\bin\Wisej.Web.dll</HintPath>
</Reference>
<Reference Include="Wisej.Web.Ext.Notification">
<HintPath>..\..\..\Development\Wisej\bin\Wisej.Web.Ext.Notification.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="MainPage.resx">
<DependentUpon>MainPage.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Include="SortBox.resx">
<DependentUpon>SortBox.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
<WebProjectProperties>
<UseIIS>True</UseIIS>
<AutoAssignPort>True</AutoAssignPort>
<DevelopmentServerPort>53799</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>http://localhost:53799/</IISUrl>
<NTLMAuthentication>False</NTLMAuthentication>
<UseCustomServer>False</UseCustomServer>
<CustomServerUrl>
</CustomServerUrl>
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
</WebProjectProperties>
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
12 changes: 12 additions & 0 deletions BackgroundTasks/BackgroundTasks/Default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<title>Background Tasks</title>
<meta charset="utf-8" />
<meta name="viewport" content="user-scalable=no,width=540" />
<script src="wisej.wx"></script>
</head>
<body>

</body>
</html>
28 changes: 28 additions & 0 deletions BackgroundTasks/BackgroundTasks/Default.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
//
// Application Configuration:
//
// All settings are optional.
//
// startup: Full name of the startup method. i.e. "MyApp.Program.Main, MyApp".
// mainWindow: Full name of a window created automatically at startup. i.e. "MyApp.MainForm, MyApp".
// theme: Name of the theme to load at startup.
// url: Destination URL. If null, the request must match a web page.
// culture: The default culture of the application. Default: "auto" (detects the culture from the browser.)
// sessionTimeout: Timeout of the session in seconds. Default: 120.
// responseTimeout: Timeout of the Wisej requests in seconds. Default: 120.
// Increase this value if you expect your application to process long running requests.
// cookieless: Enables support for cookieless sessions. Default: false.
// forceSecureConnection: Forces the client to use ssl. Default: false.
// showLoader: Loads the wisej ajax loader. Default: true.
// notSupportedUrl: URL of the not supported page. Wisej will redirect here when the browser is not supported. Default: 'resource.wix/NotSupported.html'
// debug: Enables logging on the client browser console. Default: false.
// enableWebSocket: Enables the user of WebSocket if available. Default: true.
// maxSessions: Maximum number of active sessions (users) before returning 503 (Service Unavailable). Default: 100.
// maxModalStack: Maximum number of nested modal dialogs. Default: 10.
// options: Map of platform options. i.e. {debug: true, nativeScrollBars: true, ...}
// settings: Map of custom application settings. i.e. {jquery: "http://cdn...", rootPath: "c:\\users\\...", ...}
// Custom settings are available using Application.Configuration.Settings.
{
"url": "Default.html",
"startup": "ParallelSorting.Program.Main, ParallelSorting"
}
Loading

0 comments on commit 49d9af0

Please sign in to comment.