htmlHelper, Thumbnail thumbnail)
8 | : base(htmlHelper, thumbnail)
9 | {
10 | var urlHelper = new UrlHelper(htmlHelper.ViewContext.RequestContext);
11 |
12 | base.textWriter.Write(base.element.InternalImageTemplate
13 | .Replace("#{src}", urlHelper.Content(thumbnail.ImageSource))
14 | .Replace("#{alt}", thumbnail.ImageAltText));
15 | }
16 |
17 | public ThumbnailCaptionPanel BeginCaptionPanel()
18 | {
19 | return new ThumbnailCaptionPanel(base.textWriter);
20 | }
21 |
22 | public override void Dispose()
23 | {
24 | base.Dispose();
25 | }
26 | }
27 | }
--------------------------------------------------------------------------------
/VortexSoft.Bootstrap/Thumbnails/ThumbnailCaptionPanel.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.IO;
3 |
4 | namespace VortexSoft.Bootstrap
5 | {
6 | public class ThumbnailCaptionPanel : IDisposable
7 | {
8 | private readonly TextWriter textWriter;
9 |
10 | internal ThumbnailCaptionPanel(TextWriter writer)
11 | {
12 | this.textWriter = writer;
13 | this.textWriter.Write(@"");
14 | }
15 |
16 | public void Dispose()
17 | {
18 | this.textWriter.Write("
");
19 | }
20 | }
21 | }
--------------------------------------------------------------------------------
/VortexSoft.Bootstrap/ToDo.txt:
--------------------------------------------------------------------------------
1 | To add event handling (and make fluid API), we need to make something similar to:
2 | jquery-ui.unobtrusive-0.4.0.min.js
3 | but for Bootstrap.. (Maybe need Nghia's help - research again later)
--------------------------------------------------------------------------------
/VortexSoft.Bootstrap/Toolbar/ButtonGroup.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.IO;
3 | using System.Web.Mvc;
4 |
5 | namespace VortexSoft.Bootstrap
6 | {
7 | public class ButtonGroup : IDisposable
8 | {
9 | private readonly TextWriter textWriter;
10 |
11 | internal ButtonGroup(TextWriter writer)
12 | {
13 | this.textWriter = writer;
14 | this.textWriter.Write(@"");
15 | }
16 |
17 | public void Button(string text, BootstrapNamedColor cssClass)
18 | {
19 | Button(text, cssClass, null);
20 | }
21 |
22 | public void Button(string text, BootstrapNamedColor cssClass, string onClick)
23 | {
24 | Button(text, cssClass, onClick, null);
25 | }
26 |
27 | public void Button(string text, BootstrapNamedColor cssClass, string onClick, object htmlAttributes)
28 | {
29 | var builder = new TagBuilder("input");
30 | builder.MergeAttribute("type", "button");
31 | builder.MergeAttribute("value", text);
32 |
33 | if (!string.IsNullOrEmpty(onClick))
34 | {
35 | builder.MergeAttribute("onclick", onClick);
36 | }
37 |
38 | builder.MergeAttributes(HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes));
39 |
40 | switch (cssClass)
41 | {
42 | case BootstrapNamedColor.Important: builder.AddCssClass("btn btn-danger"); break;
43 | case BootstrapNamedColor.Default: builder.AddCssClass("btn"); break;
44 | case BootstrapNamedColor.Info: builder.AddCssClass("btn btn-info"); break;
45 | case BootstrapNamedColor.Inverse: builder.AddCssClass("btn btn-inverse"); break;
46 | case BootstrapNamedColor.Primary: builder.AddCssClass("btn btn-primary"); break;
47 | case BootstrapNamedColor.Success: builder.AddCssClass("btn btn-success"); break;
48 | case BootstrapNamedColor.Warning: builder.AddCssClass("btn btn-warning"); break;
49 | default: builder.AddCssClass("btn"); break;
50 | }
51 |
52 | this.textWriter.Write(builder.ToString(TagRenderMode.SelfClosing));
53 | }
54 |
55 | public void Dispose()
56 | {
57 | this.textWriter.Write("
");
58 | }
59 | }
60 | }
--------------------------------------------------------------------------------
/VortexSoft.Bootstrap/Toolbar/Toolbar.cs:
--------------------------------------------------------------------------------
1 | namespace VortexSoft.Bootstrap
2 | {
3 | public class Toolbar : HtmlElement
4 | {
5 | public Toolbar()
6 | : this(null)
7 | {
8 | }
9 |
10 | public Toolbar(object htmlAttributes)
11 | : base("div", htmlAttributes)
12 | {
13 | EnsureClass("btn-toolbar");
14 | }
15 | }
16 | }
--------------------------------------------------------------------------------
/VortexSoft.Bootstrap/Toolbar/ToolbarBuilder.cs:
--------------------------------------------------------------------------------
1 | using System.Web.Mvc;
2 |
3 | namespace VortexSoft.Bootstrap
4 | {
5 | public class ToolbarBuilder : BuilderBase
6 | {
7 | internal ToolbarBuilder(HtmlHelper htmlHelper, Toolbar toolbar)
8 | : base(htmlHelper, toolbar)
9 | {
10 | }
11 |
12 | public ButtonGroup BeginButtonGroup()
13 | {
14 | return new ButtonGroup(base.textWriter);
15 | }
16 |
17 | public override void Dispose()
18 | {
19 | base.Dispose();
20 | }
21 | }
22 | }
--------------------------------------------------------------------------------
/packages/DotNetOpenAuth.AspNet.4.0.3.12153/DotNetOpenAuth.AspNet.4.0.3.12153.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/DotNetOpenAuth.AspNet.4.0.3.12153/DotNetOpenAuth.AspNet.4.0.3.12153.nupkg
--------------------------------------------------------------------------------
/packages/DotNetOpenAuth.AspNet.4.0.3.12153/lib/net40-full/DotNetOpenAuth.AspNet.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/DotNetOpenAuth.AspNet.4.0.3.12153/lib/net40-full/DotNetOpenAuth.AspNet.dll
--------------------------------------------------------------------------------
/packages/DotNetOpenAuth.Core.4.0.3.12153/DotNetOpenAuth.Core.4.0.3.12153.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/DotNetOpenAuth.Core.4.0.3.12153/DotNetOpenAuth.Core.4.0.3.12153.nupkg
--------------------------------------------------------------------------------
/packages/DotNetOpenAuth.Core.4.0.3.12153/lib/net40-full/DotNetOpenAuth.Core.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/DotNetOpenAuth.Core.4.0.3.12153/lib/net40-full/DotNetOpenAuth.Core.dll
--------------------------------------------------------------------------------
/packages/DotNetOpenAuth.OAuth.Consumer.4.0.3.12153/DotNetOpenAuth.OAuth.Consumer.4.0.3.12153.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/DotNetOpenAuth.OAuth.Consumer.4.0.3.12153/DotNetOpenAuth.OAuth.Consumer.4.0.3.12153.nupkg
--------------------------------------------------------------------------------
/packages/DotNetOpenAuth.OAuth.Consumer.4.0.3.12153/lib/net40-full/DotNetOpenAuth.OAuth.Consumer.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/DotNetOpenAuth.OAuth.Consumer.4.0.3.12153/lib/net40-full/DotNetOpenAuth.OAuth.Consumer.dll
--------------------------------------------------------------------------------
/packages/DotNetOpenAuth.OAuth.Core.4.0.3.12153/DotNetOpenAuth.OAuth.Core.4.0.3.12153.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/DotNetOpenAuth.OAuth.Core.4.0.3.12153/DotNetOpenAuth.OAuth.Core.4.0.3.12153.nupkg
--------------------------------------------------------------------------------
/packages/DotNetOpenAuth.OAuth.Core.4.0.3.12153/lib/net40-full/DotNetOpenAuth.OAuth.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/DotNetOpenAuth.OAuth.Core.4.0.3.12153/lib/net40-full/DotNetOpenAuth.OAuth.dll
--------------------------------------------------------------------------------
/packages/DotNetOpenAuth.OpenId.Core.4.0.3.12153/DotNetOpenAuth.OpenId.Core.4.0.3.12153.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/DotNetOpenAuth.OpenId.Core.4.0.3.12153/DotNetOpenAuth.OpenId.Core.4.0.3.12153.nupkg
--------------------------------------------------------------------------------
/packages/DotNetOpenAuth.OpenId.Core.4.0.3.12153/lib/net40-full/DotNetOpenAuth.OpenId.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/DotNetOpenAuth.OpenId.Core.4.0.3.12153/lib/net40-full/DotNetOpenAuth.OpenId.dll
--------------------------------------------------------------------------------
/packages/DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153/DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153/DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153.nupkg
--------------------------------------------------------------------------------
/packages/DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153/lib/net40-full/DotNetOpenAuth.OpenId.RelyingParty.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153/lib/net40-full/DotNetOpenAuth.OpenId.RelyingParty.dll
--------------------------------------------------------------------------------
/packages/EntityFramework.5.0.0/Content/App.config.transform:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/packages/EntityFramework.5.0.0/Content/Web.config.transform:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/packages/EntityFramework.5.0.0/EntityFramework.5.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/EntityFramework.5.0.0/EntityFramework.5.0.0.nupkg
--------------------------------------------------------------------------------
/packages/EntityFramework.5.0.0/lib/net40/EntityFramework.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/EntityFramework.5.0.0/lib/net40/EntityFramework.dll
--------------------------------------------------------------------------------
/packages/EntityFramework.5.0.0/lib/net45/EntityFramework.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/EntityFramework.5.0.0/lib/net45/EntityFramework.dll
--------------------------------------------------------------------------------
/packages/EntityFramework.5.0.0/tools/EntityFramework.PS3.psd1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/EntityFramework.5.0.0/tools/EntityFramework.PS3.psd1
--------------------------------------------------------------------------------
/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.Utility.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.Utility.dll
--------------------------------------------------------------------------------
/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.dll
--------------------------------------------------------------------------------
/packages/EntityFramework.5.0.0/tools/EntityFramework.psd1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/EntityFramework.5.0.0/tools/EntityFramework.psd1
--------------------------------------------------------------------------------
/packages/EntityFramework.5.0.0/tools/Redirect.VS11.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
9 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/packages/EntityFramework.5.0.0/tools/Redirect.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
9 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/packages/EntityFramework.5.0.0/tools/about_EntityFramework.help.txt:
--------------------------------------------------------------------------------
1 | TOPIC
2 | about_EntityFramework
3 |
4 | SHORT DESCRIPTION
5 | Provides information about Entity Framework commands.
6 |
7 | LONG DESCRIPTION
8 | This topic describes the Entity Framework commands. Entity Framework is
9 | Microsoft's recommended data access technology for new applications.
10 |
11 |
12 | The following Entity Framework cmdlets are included.
13 |
14 | Cmdlet Description
15 | ----------------- ---------------------------------------------------
16 | Enable-Migrations Enables Code First Migrations in a project.
17 |
18 | Add-Migration Scaffolds a migration script for any pending model
19 | changes.
20 |
21 | Update-Database Applies any pending migrations to the database.
22 |
23 | Get-Migrations Displays the migrations that have been applied to
24 | the target database.
25 |
26 | SEE ALSO
27 | Enable-Migrations
28 | Add-Migration
29 | Update-Database
30 | Get-Migrations
31 |
--------------------------------------------------------------------------------
/packages/EntityFramework.5.0.0/tools/migrate.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/EntityFramework.5.0.0/tools/migrate.exe
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Mvc.4.0.20710.0/Microsoft.AspNet.Mvc.4.0.20710.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.Mvc.4.0.20710.0/Microsoft.AspNet.Mvc.4.0.20710.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Mvc.4.0.20710.0/lib/net40/System.Web.Mvc.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.Mvc.4.0.20710.0/lib/net40/System.Web.Mvc.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Razor.2.0.20710.0/Microsoft.AspNet.Razor.2.0.20710.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.Razor.2.0.20710.0/Microsoft.AspNet.Razor.2.0.20710.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Razor.2.0.20710.0/lib/net40/System.Web.Razor.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.Razor.2.0.20710.0/lib/net40/System.Web.Razor.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Web.Optimization.1.0.0/Microsoft.AspNet.Web.Optimization.1.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.Web.Optimization.1.0.0/Microsoft.AspNet.Web.Optimization.1.0.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Web.Optimization.1.0.0/lib/net40/System.Web.Optimization.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.Web.Optimization.1.0.0/lib/net40/System.Web.Optimization.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.4.0.20710.0/Microsoft.AspNet.WebApi.4.0.20710.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebApi.4.0.20710.0/Microsoft.AspNet.WebApi.4.0.20710.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/lib/net40/System.Net.Http.Formatting.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebApi.Client.4.0.20710.0/lib/net40/System.Net.Http.Formatting.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/content/web.config.transform:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/lib/net40/System.Web.Http.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebApi.Core.4.0.20710.0/lib/net40/System.Web.Http.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/lib/net40/System.Web.Http.WebHost.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/lib/net40/System.Web.Http.WebHost.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebPages.2.0.20710.0/Microsoft.AspNet.WebPages.2.0.20710.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebPages.2.0.20710.0/Microsoft.AspNet.WebPages.2.0.20710.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.Helpers.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.Helpers.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Deployment.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Deployment.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Razor.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Razor.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebPages.Data.2.0.20710.0/Microsoft.AspNet.WebPages.Data.2.0.20710.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebPages.Data.2.0.20710.0/Microsoft.AspNet.WebPages.Data.2.0.20710.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebPages.Data.2.0.20710.0/lib/net40/WebMatrix.Data.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebPages.Data.2.0.20710.0/lib/net40/WebMatrix.Data.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebPages.OAuth.2.0.20710.0/Microsoft.AspNet.WebPages.OAuth.2.0.20710.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebPages.OAuth.2.0.20710.0/Microsoft.AspNet.WebPages.OAuth.2.0.20710.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebPages.OAuth.2.0.20710.0/lib/net40/Microsoft.Web.WebPages.OAuth.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebPages.OAuth.2.0.20710.0/lib/net40/Microsoft.Web.WebPages.OAuth.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebPages.WebData.2.0.20710.0/Microsoft.AspNet.WebPages.WebData.2.0.20710.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebPages.WebData.2.0.20710.0/Microsoft.AspNet.WebPages.WebData.2.0.20710.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebPages.WebData.2.0.20710.0/lib/net40/WebMatrix.WebData.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.AspNet.WebPages.WebData.2.0.20710.0/lib/net40/WebMatrix.WebData.dll
--------------------------------------------------------------------------------
/packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll
--------------------------------------------------------------------------------
/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll
--------------------------------------------------------------------------------
/packages/Microsoft.Net.Http.2.0.20710.0/lib/net45/_._:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll
--------------------------------------------------------------------------------
/packages/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0/Content/Scripts/jquery.unobtrusive-ajax.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | ** Unobtrusive Ajax support library for jQuery
3 | ** Copyright (C) Microsoft Corporation. All rights reserved.
4 | */
5 | (function(a){var b="unobtrusiveAjaxClick",g="unobtrusiveValidation";function c(d,b){var a=window,c=(d||"").split(".");while(a&&c.length)a=a[c.shift()];if(typeof a==="function")return a;b.push(d);return Function.constructor.apply(null,b)}function d(a){return a==="GET"||a==="POST"}function f(b,a){!d(a)&&b.setRequestHeader("X-HTTP-Method-Override",a)}function h(c,b,e){var d;if(e.indexOf("application/x-javascript")!==-1)return;d=(c.getAttribute("data-ajax-mode")||"").toUpperCase();a(c.getAttribute("data-ajax-update")).each(function(f,c){var e;switch(d){case"BEFORE":e=c.firstChild;a("").html(b).contents().each(function(){c.insertBefore(this,e)});break;case"AFTER":a("").html(b).contents().each(function(){c.appendChild(this)});break;default:a(c).html(b)}})}function e(b,e){var j,k,g,i;j=b.getAttribute("data-ajax-confirm");if(j&&!window.confirm(j))return;k=a(b.getAttribute("data-ajax-loading"));i=b.getAttribute("data-ajax-loading-duration")||0;a.extend(e,{type:b.getAttribute("data-ajax-method")||undefined,url:b.getAttribute("data-ajax-url")||undefined,beforeSend:function(d){var a;f(d,g);a=c(b.getAttribute("data-ajax-begin"),["xhr"]).apply(this,arguments);a!==false&&k.show(i);return a},complete:function(){k.hide(i);c(b.getAttribute("data-ajax-complete"),["xhr","status"]).apply(this,arguments)},success:function(a,e,d){h(b,a,d.getResponseHeader("Content-Type")||"text/html");c(b.getAttribute("data-ajax-success"),["data","status","xhr"]).apply(this,arguments)},error:c(b.getAttribute("data-ajax-failure"),["xhr","status","error"])});e.data.push({name:"X-Requested-With",value:"XMLHttpRequest"});g=e.type.toUpperCase();if(!d(g)){e.type="POST";e.data.push({name:"X-HTTP-Method-Override",value:g})}a.ajax(e)}function i(c){var b=a(c).data(g);return!b||!b.validate||b.validate()}a("a[data-ajax=true]").live("click",function(a){a.preventDefault();e(this,{url:this.href,type:"GET",data:[]})});a("form[data-ajax=true] input[type=image]").live("click",function(c){var g=c.target.name,d=a(c.target),f=d.parents("form")[0],e=d.offset();a(f).data(b,[{name:g+".x",value:Math.round(c.pageX-e.left)},{name:g+".y",value:Math.round(c.pageY-e.top)}]);setTimeout(function(){a(f).removeData(b)},0)});a("form[data-ajax=true] :submit").live("click",function(c){var e=c.target.name,d=a(c.target).parents("form")[0];a(d).data(b,e?[{name:e,value:c.target.value}]:[]);setTimeout(function(){a(d).removeData(b)},0)});a("form[data-ajax=true]").live("submit",function(d){var c=a(this).data(b)||[];d.preventDefault();if(!i(this))return;e(this,{url:this.action,type:this.method||"GET",data:c.concat(a(this).serializeArray())})})})(jQuery);
--------------------------------------------------------------------------------
/packages/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0.nupkg
--------------------------------------------------------------------------------
/packages/Modernizr.2.5.3/Modernizr.2.5.3.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Modernizr.2.5.3/Modernizr.2.5.3.nupkg
--------------------------------------------------------------------------------
/packages/Newtonsoft.Json.4.5.6/Newtonsoft.Json.4.5.6.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Newtonsoft.Json.4.5.6/Newtonsoft.Json.4.5.6.nupkg
--------------------------------------------------------------------------------
/packages/Newtonsoft.Json.4.5.6/lib/net40/Newtonsoft.Json.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/Newtonsoft.Json.4.5.6/lib/net40/Newtonsoft.Json.dll
--------------------------------------------------------------------------------
/packages/WebGrease.1.1.0/WebGrease.1.1.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/WebGrease.1.1.0/WebGrease.1.1.0.nupkg
--------------------------------------------------------------------------------
/packages/WebGrease.1.1.0/lib/Antlr3.Runtime.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/WebGrease.1.1.0/lib/Antlr3.Runtime.dll
--------------------------------------------------------------------------------
/packages/WebGrease.1.1.0/lib/WebGrease.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/WebGrease.1.1.0/lib/WebGrease.dll
--------------------------------------------------------------------------------
/packages/WebGrease.1.1.0/tools/WG.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/WebGrease.1.1.0/tools/WG.exe
--------------------------------------------------------------------------------
/packages/jQuery.1.7.2/Tools/install.ps1:
--------------------------------------------------------------------------------
1 | param($installPath, $toolsPath, $package, $project)
2 |
3 | # VS 11 and above supports the new intellisense JS files
4 | $supportsJsIntelliSenseFile = [System.Version]::Parse($dte.Version).Major -ge 11
5 |
6 | if (-not $supportsJsIntelliSenseFile) {
7 | Write-Host "IntelliSense JS files are not supported by your version of VS: " + $dte.Version
8 | exit
9 | }
10 |
11 | # Extract the version number from the jquery file in the package's content\scripts folder
12 | $packageScriptsFolder = Join-Path $installPath Content\Scripts
13 | $jqueryFileName = Join-Path $packageScriptsFolder "jquery-*.js" | Get-ChildItem -Exclude "*.min.js","*-vsdoc.js" | Split-Path -Leaf
14 | $jqueryFileName -match "jquery-((?:\d+\.)?(?:\d+\.)?(?:\d+\.)?(?:\d+)).js"
15 | $ver = $matches[1]
16 |
17 | # Determine the project scripts folder path
18 | $projectFolderPath = $project.Properties.Item("FullPath").Value
19 | $projectScriptsFolderPath = Join-Path $projectFolderPath Scripts
20 |
21 | # Get the project item for the scripts folder
22 | try {
23 | $scriptsFolderProjectItem = $project.ProjectItems.Item("Scripts")
24 | }
25 | catch {
26 | exit
27 | }
28 |
29 | # Delete the vsdoc file from the project
30 | try {
31 | $vsDocProjectItem = $scriptsFolderProjectItem.ProjectItems.Item("jquery-$ver-vsdoc.js")
32 | $vsDocProjectItem.Delete()
33 | }
34 | catch {
35 | exit
36 | }
37 |
38 | # Copy the intellisense file to the project from the tools folder
39 | $intelliSenseFileName = "jquery-$ver.intellisense.js"
40 | $intelliSenseFileSourcePath = Join-Path $toolsPath $intelliSenseFileName
41 | try {
42 | $scriptsFolderProjectItem.ProjectItems.AddFromFileCopy($intelliSenseFileSourcePath)
43 | }
44 | catch {
45 | # This will throw if the file already exists, so we need to catch here
46 | }
--------------------------------------------------------------------------------
/packages/jQuery.1.7.2/Tools/uninstall.ps1:
--------------------------------------------------------------------------------
1 | param($installPath, $toolsPath, $package, $project)
2 |
3 | function Get-Checksum($file) {
4 | $cryptoProvider = New-Object "System.Security.Cryptography.MD5CryptoServiceProvider"
5 |
6 | $fileInfo = Get-Item "$file"
7 | trap { ;
8 | continue } $stream = $fileInfo.OpenRead()
9 | if ($? -eq $false) {
10 | #Write-Host "Couldn't open file for reading"
11 | return $null
12 | }
13 |
14 | $bytes = $cryptoProvider.ComputeHash($stream)
15 | $checksum = ''
16 | foreach ($byte in $bytes) {
17 | $checksum += $byte.ToString('x2')
18 | }
19 |
20 | $stream.Close() | Out-Null
21 |
22 | return $checksum
23 | }
24 |
25 | # Extract the version number from the jquery file in the package's content\scripts folder
26 | $packageScriptsFolder = Join-Path $installPath Content | Join-Path -ChildPath Scripts
27 | $jqueryFileName = Join-Path $packageScriptsFolder "jquery-*.js" | Get-ChildItem -Exclude "*.min.js","*-vsdoc.js" | Split-Path -Leaf
28 | $jqueryFileName -match "jquery-((?:\d+\.)?(?:\d+\.)?(?:\d+\.)?(?:\d+)).js"
29 | $ver = $matches[1]
30 |
31 | # Determine the file paths
32 | $projectFolder = $project.Properties.Item("FullPath").Value
33 | $intelliSenseFileName = "jquery-$ver.intellisense.js"
34 | $projectScriptsFolder = Join-Path $projectFolder Scripts
35 | $projectIntelliSenseFilePath = Join-Path $projectScriptsFolder $intelliSenseFileName
36 | $origIntelliSenseFilePath = Join-Path $toolsPath $intelliSenseFileName
37 |
38 | if (Test-Path $projectIntelliSenseFilePath) {
39 | if ((Get-Checksum $projectIntelliSenseFilePath) -eq (Get-Checksum $origIntelliSenseFilePath)) {
40 | # The intellisense file in the project matches the file in the tools folder, delete it
41 |
42 | try {
43 | # Get the project item for the scripts folder
44 | $scriptsFolderProjectItem = $project.ProjectItems.Item("Scripts")
45 |
46 | # Get the project item for the intellisense file
47 | $intelliSenseFileProjectItem = $scriptsFolderProjectItem.ProjectItems.Item($intelliSenseFileName)
48 | }
49 | catch {
50 | # The item wasn't found
51 | exit
52 | }
53 |
54 | # Delete the project item
55 | $intelliSenseFileProjectItem.Delete()
56 | }
57 | else {
58 | $projectScriptsFolderLeaf = Split-Path $projectScriptsFolder -Leaf
59 | Write-Host "Skipping '$projectScriptsFolderLeaf\$intelliSenseFileName' because it was modified." -ForegroundColor Magenta
60 | }
61 | }
62 | else {
63 | # The intellisense file was not found in project
64 | }
65 |
--------------------------------------------------------------------------------
/packages/jQuery.1.7.2/jQuery.1.7.2.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.1.7.2/jQuery.1.7.2.nupkg
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.accordion.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Accordion 1.9.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2012 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Accordion#theming
10 | */
11 | .ui-accordion .ui-accordion-header { display: block; cursor: pointer; position: relative; margin-top: 2px; padding: .5em .5em .5em .7em; zoom: 1; }
12 | .ui-accordion .ui-accordion-icons { padding-left: 2.2em; }
13 | .ui-accordion .ui-accordion-noicons { padding-left: .7em; }
14 | .ui-accordion .ui-accordion-icons .ui-accordion-icons { padding-left: 2.2em; }
15 | .ui-accordion .ui-accordion-header .ui-accordion-header-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
16 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; overflow: auto; zoom: 1; }
17 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.all.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI CSS Framework 1.9.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2012 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Theming
10 | */
11 | @import "jquery.ui.base.css";
12 | @import "jquery.ui.theme.css";
13 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.autocomplete.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Autocomplete 1.9.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2012 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Autocomplete#theming
10 | */
11 | .ui-autocomplete {
12 | position: absolute;
13 | top: 0; /* #8656 */
14 | cursor: default;
15 | }
16 |
17 | /* workarounds */
18 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
19 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.base.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI CSS Framework 1.9.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2012 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Theming
10 | */
11 | @import url("jquery.ui.core.css");
12 |
13 | @import url("jquery.ui.accordion.css");
14 | @import url("jquery.ui.autocomplete.css");
15 | @import url("jquery.ui.button.css");
16 | @import url("jquery.ui.datepicker.css");
17 | @import url("jquery.ui.dialog.css");
18 | @import url("jquery.ui.menu.css");
19 | @import url("jquery.ui.progressbar.css");
20 | @import url("jquery.ui.resizable.css");
21 | @import url("jquery.ui.selectable.css");
22 | @import url("jquery.ui.slider.css");
23 | @import url("jquery.ui.spinner.css");
24 | @import url("jquery.ui.tabs.css");
25 | @import url("jquery.ui.tooltip.css");
26 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.button.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Button 1.9.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2012 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Button#theming
10 | */
11 | .ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
12 | .ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active { text-decoration: none; }
13 | .ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
14 | button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
15 | .ui-button-icons-only { width: 3.4em; }
16 | button.ui-button-icons-only { width: 3.7em; }
17 |
18 | /*button text element */
19 | .ui-button .ui-button-text { display: block; line-height: 1.4; }
20 | .ui-button-text-only .ui-button-text { padding: .4em 1em; }
21 | .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
22 | .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
23 | .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
24 | .ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
25 | /* no icon support for input elements, provide padding by default */
26 | input.ui-button { padding: .4em 1em; }
27 |
28 | /*button icon element(s) */
29 | .ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
30 | .ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
31 | .ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
32 | .ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
33 | .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
34 |
35 | /*button sets*/
36 | .ui-buttonset { margin-right: 7px; }
37 | .ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }
38 |
39 | /* workarounds */
40 | button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
41 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.core.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI CSS Framework 1.9.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2012 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Theming/API
10 | */
11 |
12 | /* Layout helpers
13 | ----------------------------------*/
14 | .ui-helper-hidden { display: none; }
15 | .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
16 | .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
17 | .ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; }
18 | .ui-helper-clearfix:after { clear: both; }
19 | .ui-helper-clearfix { zoom: 1; }
20 | .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
21 |
22 |
23 | /* Interaction Cues
24 | ----------------------------------*/
25 | .ui-state-disabled { cursor: default !important; }
26 |
27 |
28 | /* Icons
29 | ----------------------------------*/
30 |
31 | /* states and images */
32 | .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
33 |
34 |
35 | /* Misc visuals
36 | ----------------------------------*/
37 |
38 | /* Overlays */
39 | .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
40 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.dialog.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Dialog 1.9.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2012 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Dialog#theming
10 | */
11 | .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
12 | .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; }
13 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; }
14 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
15 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
16 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
17 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
18 | .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
19 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
20 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
21 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
22 | .ui-draggable .ui-dialog-titlebar { cursor: move; }
23 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.menu.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Menu 1.9.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2012 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Menu#theming
10 | */
11 | .ui-menu { list-style:none; padding: 2px; margin: 0; display:block; outline: none; }
12 | .ui-menu .ui-menu { margin-top: -3px; position: absolute; }
13 | .ui-menu .ui-menu-item { margin: 0; padding: 0; zoom: 1; width: 100%; }
14 | .ui-menu .ui-menu-divider { margin: 5px -2px 5px -2px; height: 0; font-size: 0; line-height: 0; border-width: 1px 0 0 0; }
15 | .ui-menu .ui-menu-item a { text-decoration: none; display: block; padding: 2px .4em; line-height: 1.5; zoom: 1; font-weight: normal; }
16 | .ui-menu .ui-menu-item a.ui-state-focus,
17 | .ui-menu .ui-menu-item a.ui-state-active { font-weight: normal; margin: -1px; }
18 |
19 | .ui-menu .ui-state-disabled { font-weight: normal; margin: .4em 0 .2em; line-height: 1.5; }
20 | .ui-menu .ui-state-disabled a { cursor: default; }
21 |
22 | /* icon support */
23 | .ui-menu-icons { position: relative; }
24 | .ui-menu-icons .ui-menu-item a { position: relative; padding-left: 2em; }
25 |
26 | /* left-aligned */
27 | .ui-menu .ui-icon { position: absolute; top: .2em; left: .2em; }
28 |
29 | /* right-aligned */
30 | .ui-menu .ui-menu-icon { position: static; float: right; }
31 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.progressbar.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Progressbar 1.9.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2012 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Progressbar#theming
10 | */
11 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; }
12 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.resizable.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Resizable 1.9.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2012 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Resizable#theming
10 | */
11 | .ui-resizable { position: relative;}
12 | .ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; }
13 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
14 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
15 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
16 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
17 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
18 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
19 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
20 | .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
21 | .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.selectable.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Selectable 1.9.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2012 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Selectable#theming
10 | */
11 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
12 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.slider.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Slider 1.9.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2012 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Slider#theming
10 | */
11 | .ui-slider { position: relative; text-align: left; }
12 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
13 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
14 |
15 | .ui-slider-horizontal { height: .8em; }
16 | .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
17 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
18 | .ui-slider-horizontal .ui-slider-range-min { left: 0; }
19 | .ui-slider-horizontal .ui-slider-range-max { right: 0; }
20 |
21 | .ui-slider-vertical { width: .8em; height: 100px; }
22 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
23 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
24 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; }
25 | .ui-slider-vertical .ui-slider-range-max { top: 0; }
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.spinner.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Spinner 1.9.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2012 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Spinner#theming
10 | */
11 | .ui-spinner { position:relative; display: inline-block; overflow: hidden; padding: 0; vertical-align: middle; }
12 | .ui-spinner-input { border: none; background: none; padding: 0; margin: .2em 0; vertical-align: middle; margin-left: .4em; margin-right: 22px; }
13 | .ui-spinner-button { width: 16px; height: 50%; font-size: .5em; padding: 0; margin: 0; text-align: center; position: absolute; cursor: default; display: block; overflow: hidden; right: 0; }
14 | .ui-spinner a.ui-spinner-button { border-top: none; border-bottom: none; border-right: none; } /* more specificity required here to overide default borders */
15 | .ui-spinner .ui-icon { position: absolute; margin-top: -8px; top: 50%; left: 0; } /* vertical centre icon */
16 | .ui-spinner-up { top: 0; }
17 | .ui-spinner-down { bottom: 0; }
18 |
19 | /* TR overrides */
20 | .ui-spinner .ui-icon-triangle-1-s {
21 | /* need to fix icons sprite */
22 | background-position:-65px -16px;
23 | }
24 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.tabs.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Tabs 1.9.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2012 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Tabs#theming
10 | */
11 | .ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
12 | .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
13 | .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 0; margin: 1px .2em 0 0; border-bottom: 0; padding: 0; white-space: nowrap; }
14 | .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
15 | .ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: -1px; padding-bottom: 1px; }
16 | .ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a { cursor: text; }
17 | .ui-tabs .ui-tabs-nav li a, .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
18 | .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
19 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.tooltip.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Tooltip 1.9.1
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2012 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | */
9 | .ui-tooltip {
10 | padding: 8px;
11 | position: absolute;
12 | z-index: 9999;
13 | max-width: 300px;
14 | -webkit-box-shadow: 0 0 5px #aaa;
15 | box-shadow: 0 0 5px #aaa;
16 | }
17 | /* Fades and background-images don't work well together in IE6, drop the image */
18 | * html .ui-tooltip {
19 | background-image: none;
20 | }
21 | body .ui-tooltip { border-width: 2px; }
22 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.accordion.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.9.1 - 2012-10-25
2 | * http://jqueryui.com
3 | * Includes: jquery.ui.accordion.css
4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */
5 | .ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin-top:2px;padding:.5em .5em .5em .7em;zoom:1}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-noicons{padding-left:.7em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto;zoom:1}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.autocomplete.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.9.1 - 2012-10-25
2 | * http://jqueryui.com
3 | * Includes: jquery.ui.autocomplete.css
4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */
5 | .ui-autocomplete{position:absolute;top:0;cursor:default}* html .ui-autocomplete{width:1px}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.button.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.9.1 - 2012-10-25
2 | * http://jqueryui.com
3 | * Includes: jquery.ui.button.css
4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */
5 | .ui-button{display:inline-block;position:relative;padding:0;margin-right:.1em;cursor:pointer;text-align:center;zoom:1;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:1.4}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}button.ui-button::-moz-focus-inner{border:0;padding:0}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.core.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.9.1 - 2012-10-25
2 | * http://jqueryui.com
3 | * Includes: jquery.ui.core.css
4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */
5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{zoom:1}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.dialog.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.9.1 - 2012-10-25
2 | * http://jqueryui.com
3 | * Includes: jquery.ui.dialog.css
4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */
5 | .ui-dialog{position:absolute;padding:.2em;width:300px;overflow:hidden}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 16px .1em 0}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:19px;margin:-10px 0 0 0;padding:1px;height:18px}.ui-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.ui-dialog .ui-dialog-titlebar-close:hover,.ui-dialog .ui-dialog-titlebar-close:focus{padding:0}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto;zoom:1}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.menu.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.9.1 - 2012-10-25
2 | * http://jqueryui.com
3 | * Includes: jquery.ui.menu.css
4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */
5 | .ui-menu{list-style:none;padding:2px;margin:0;display:block;outline:none}.ui-menu .ui-menu{margin-top:-3px;position:absolute}.ui-menu .ui-menu-item{margin:0;padding:0;zoom:1;width:100%}.ui-menu .ui-menu-divider{margin:5px -2px 5px -2px;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:2px .4em;line-height:1.5;zoom:1;font-weight:normal}.ui-menu .ui-menu-item a.ui-state-focus,.ui-menu .ui-menu-item a.ui-state-active{font-weight:normal;margin:-1px}.ui-menu .ui-state-disabled{font-weight:normal;margin:.4em 0 .2em;line-height:1.5}.ui-menu .ui-state-disabled a{cursor:default}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item a{position:relative;padding-left:2em}.ui-menu .ui-icon{position:absolute;top:.2em;left:.2em}.ui-menu .ui-menu-icon{position:static;float:right}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.progressbar.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.9.1 - 2012-10-25
2 | * http://jqueryui.com
3 | * Includes: jquery.ui.progressbar.css
4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */
5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.resizable.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.9.1 - 2012-10-25
2 | * http://jqueryui.com
3 | * Includes: jquery.ui.resizable.css
4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */
5 | .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.selectable.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.9.1 - 2012-10-25
2 | * http://jqueryui.com
3 | * Includes: jquery.ui.selectable.css
4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */
5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.slider.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.9.1 - 2012-10-25
2 | * http://jqueryui.com
3 | * Includes: jquery.ui.slider.css
4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */
5 | .ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.spinner.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.9.1 - 2012-10-25
2 | * http://jqueryui.com
3 | * Includes: jquery.ui.spinner.css
4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */
5 | .ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.tabs.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.9.1 - 2012-10-25
2 | * http://jqueryui.com
3 | * Includes: jquery.ui.tabs.css
4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */
5 | .ui-tabs{position:relative;padding:.2em;zoom:1}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.tooltip.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.9.1 - 2012-10-25
2 | * http://jqueryui.com
3 | * Includes: jquery.ui.tooltip.css
4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */
5 | .ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}* html .ui-tooltip{background-image:none}body .ui-tooltip{border-width:2px}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Tools/install.ps1:
--------------------------------------------------------------------------------
1 | param($installPath, $toolsPath, $package, $project)
2 |
3 | . (Join-Path $toolsPath common.ps1)
4 |
5 | if ($scriptsFolderProjectItem -eq $null) {
6 | # No Scripts folder
7 | Write-Host "No Scripts folder found"
8 | exit
9 | }
10 |
11 | # Update the _references.js file
12 | AddOrUpdate-Reference $scriptsFolderProjectItem $juiFileNameRegEx $juiFileName
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/Tools/uninstall.ps1:
--------------------------------------------------------------------------------
1 | param($installPath, $toolsPath, $package, $project)
2 |
3 | . (Join-Path $toolsPath common.ps1)
4 |
5 | # Update the _references.js file
6 | Remove-Reference $scriptsFolderProjectItem $juiFileNameRegEx
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.9.2/jQuery.UI.Combined.1.9.2.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.UI.Combined.1.9.2/jQuery.UI.Combined.1.9.2.nupkg
--------------------------------------------------------------------------------
/packages/jQuery.Validation.1.9.0.1/jQuery.Validation.1.9.0.1.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQuery.Validation.1.9.0.1/jQuery.Validation.1.9.0.1.nupkg
--------------------------------------------------------------------------------
/packages/jQueryUIHelpers.Mvc4.1.0.1/content/views/web.config.transform:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/packages/jQueryUIHelpers.Mvc4.1.0.1/jQueryUIHelpers.Mvc4.1.0.1.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQueryUIHelpers.Mvc4.1.0.1/jQueryUIHelpers.Mvc4.1.0.1.nupkg
--------------------------------------------------------------------------------
/packages/jQueryUIHelpers.Mvc4.1.0.1/lib/net40/JQueryUIHelpers.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/jQueryUIHelpers.Mvc4.1.0.1/lib/net40/JQueryUIHelpers.dll
--------------------------------------------------------------------------------
/packages/knockoutjs.2.1.0/knockoutjs.2.1.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gordon-matt/BootstrapHelpers/caa3017e90cc4f267a4def67eb8d291ba06134d3/packages/knockoutjs.2.1.0/knockoutjs.2.1.0.nupkg
--------------------------------------------------------------------------------
/packages/repositories.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
Use another service to log in.
45 | @Html.Action("ExternalLoginsList", new { ReturnUrl = ViewBag.ReturnUrl }) 46 |