2 | @{
3 | ViewBag.Title = "Store";
4 | }
5 | Browse Genres
6 |
7 |
8 | Select from @Model.Count() genres:
9 |
10 | @foreach (var genre in Model)
11 | {
12 | - @Html.ActionLink(genre.Name, "Browse", new { genre = genre.Name })
13 | }
14 |
15 |
--------------------------------------------------------------------------------
/MvcMusicStore/Views/StoreManager/Create.cshtml:
--------------------------------------------------------------------------------
1 | @model MvcMusicStore.Models.Album
2 |
3 | @{
4 | ViewBag.Title = "Create";
5 | }
6 |
7 | Create
8 |
9 |
10 |
11 |
12 | @using (Html.BeginForm()) {
13 | @Html.ValidationSummary(true)
14 |
61 | }
62 |
63 |
64 | @Html.ActionLink("Back to List", "Index")
65 |
66 |
--------------------------------------------------------------------------------
/MvcMusicStore/Views/StoreManager/Delete.cshtml:
--------------------------------------------------------------------------------
1 | @model MvcMusicStore.Models.Album
2 |
3 | @{
4 | ViewBag.Title = "Delete";
5 | }
6 |
7 | Delete Confirmation
8 |
9 | Are you sure you want to delete the album titled
10 | @Model.Title?
11 |
12 |
13 | @using (Html.BeginForm()) {
14 |
15 |
16 |
17 |
18 | @Html.ActionLink("Back to List", "Index")
19 |
20 |
21 | }
--------------------------------------------------------------------------------
/MvcMusicStore/Views/StoreManager/Details.cshtml:
--------------------------------------------------------------------------------
1 | @model MvcMusicStore.Models.Album
2 |
3 | @{
4 | ViewBag.Title = "Details";
5 | }
6 |
7 | Details
8 |
9 |
37 |
38 | @Html.ActionLink("Edit", "Edit", new { id=Model.AlbumId }) |
39 | @Html.ActionLink("Back to List", "Index")
40 |
41 |
--------------------------------------------------------------------------------
/MvcMusicStore/Views/StoreManager/Edit.cshtml:
--------------------------------------------------------------------------------
1 | @model MvcMusicStore.Models.Album
2 |
3 | @{
4 | ViewBag.Title = "Edit";
5 | }
6 |
7 | Edit
8 |
9 |
10 |
11 |
12 | @using (Html.BeginForm()) {
13 | @Html.ValidationSummary(true)
14 |
63 | }
64 |
65 |
66 | @Html.ActionLink("Back to List", "Index")
67 |
68 |
--------------------------------------------------------------------------------
/MvcMusicStore/Views/StoreManager/Index.cshtml:
--------------------------------------------------------------------------------
1 | @model IEnumerable
2 |
3 | @helper Truncate(string input, int length)
4 | {
5 | if (input.Length <= length) {
6 | @input
7 | } else {
8 | @input.Substring(0, length)...
9 | }
10 | }
11 |
12 | @{
13 | ViewBag.Title = "Index";
14 | }
15 |
16 | Index
17 |
18 |
19 | @Html.ActionLink("Create New", "Create")
20 |
21 |
22 |
23 |
24 | Genre
25 | |
26 |
27 | Artist
28 | |
29 |
30 | Title
31 | |
32 |
33 | Price
34 | |
35 | |
36 |
37 |
38 | @foreach (var item in Model) {
39 |
40 |
41 | @Html.DisplayFor(modelItem => item.Genre.Name)
42 | |
43 |
44 | @Truncate(item.Artist.Name, 25)
45 | |
46 |
47 | @Truncate(item.Title, 25)
48 | |
49 |
50 | @Html.DisplayFor(modelItem => item.Price)
51 | |
52 |
53 | @Html.ActionLink("Edit", "Edit", new { id=item.AlbumId }) |
54 | @Html.ActionLink("Details", "Details", new { id=item.AlbumId }) |
55 | @Html.ActionLink("Delete", "Delete", new { id=item.AlbumId })
56 | |
57 |
58 | }
59 |
60 |
--------------------------------------------------------------------------------
/MvcMusicStore/Views/Web.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
39 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
--------------------------------------------------------------------------------
/MvcMusicStore/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "~/Views/Shared/_Layout.cshtml";
3 | }
--------------------------------------------------------------------------------
/MvcMusicStore/Web.Debug.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
17 |
18 |
29 |
30 |
--------------------------------------------------------------------------------
/MvcMusicStore/Web.Release.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
17 |
18 |
19 |
30 |
31 |
--------------------------------------------------------------------------------
/MvcMusicStore/Web.config:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
23 |
24 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
--------------------------------------------------------------------------------
/MvcMusicStore/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | AspNetPerformanceMetrics
2 | ========================
3 |
4 | AspNetPerformanceMetrics adds the metrics provided by the [Metrics.NET](https://github.com/etishor/Metrics.NET) to ASP.NET MVC
5 |
--------------------------------------------------------------------------------
/packages/EntityFramework.4.1.10331.0/EntityFramework.4.1.10331.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/EntityFramework.4.1.10331.0/EntityFramework.4.1.10331.0.nupkg
--------------------------------------------------------------------------------
/packages/EntityFramework.4.1.10331.0/EntityFramework.4.1.10331.0.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | EntityFramework
5 | 4.1.10331.0
6 | EntityFramework
7 | Microsoft
8 | Microsoft
9 | http://go.microsoft.com/fwlink/?LinkID=211010
10 | http://msdn.com/data/ef
11 | http://go.microsoft.com/fwlink/?LinkID=386613
12 | true
13 | DbContext API and Code First workflow for ADO.NET Entity Framework.
14 | DbContext API and Code First workflow for ADO.NET Entity Framework.
15 |
16 |
--------------------------------------------------------------------------------
/packages/EntityFramework.4.1.10331.0/lib/EntityFramework.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/EntityFramework.4.1.10331.0/lib/EntityFramework.dll
--------------------------------------------------------------------------------
/packages/EntityFramework.4.1.10331.0/tools/install.ps1:
--------------------------------------------------------------------------------
1 | param($installPath, $toolsPath, $package, $project)
2 | $project.Object.References.Add("System.Data.Entity") | out-null
3 | $project.Object.References.Add("System.ComponentModel.DataAnnotations") | out-null
4 |
--------------------------------------------------------------------------------
/packages/Metrics.NET-net40.0.2.2/Metrics.NET-net40.0.2.2.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/Metrics.NET-net40.0.2.2/Metrics.NET-net40.0.2.2.nupkg
--------------------------------------------------------------------------------
/packages/Metrics.NET-net40.0.2.2/Metrics.NET-net40.0.2.2.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Metrics.NET-net40
5 | 0.2.2
6 | Metrics.NET-net40
7 | iulian.margarintescu
8 | iulian.margarintescu
9 | https://github.com/etishor/Metrics.NET/blob/master/LICENSE
10 | https://github.com/etishor/Metrics.NET
11 | false
12 | (Legacy .NET 4.0 Version) The library provides support for capturing: Gauges, Counters, Meters, Histograms and Timers
13 | (Legacy .NET 4.0 Version) .NET Port of the Java Metrics Library, a library for collecting metrics. Library also provides Health Checks.
14 | Iulian Margarintescu
15 | metrics measurements charts timer histogram duration graphite health checks
16 |
17 |
--------------------------------------------------------------------------------
/packages/Metrics.NET-net40.0.2.2/lib/net40/Metrics.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/Metrics.NET-net40.0.2.2/lib/net40/Metrics.dll
--------------------------------------------------------------------------------
/packages/Metrics.NET-net40.0.2.2/lib/net40/Metrics.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/Metrics.NET-net40.0.2.2/lib/net40/Metrics.pdb
--------------------------------------------------------------------------------
/packages/Metrics.NET-net40.0.2.3/Metrics.NET-net40.0.2.3.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/Metrics.NET-net40.0.2.3/Metrics.NET-net40.0.2.3.nupkg
--------------------------------------------------------------------------------
/packages/Metrics.NET-net40.0.2.3/Metrics.NET-net40.0.2.3.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Metrics.NET-net40
5 | 0.2.3
6 | Metrics.NET-net40
7 | iulian.margarintescu
8 | iulian.margarintescu
9 | https://github.com/etishor/Metrics.NET/blob/master/LICENSE
10 | https://github.com/etishor/Metrics.NET
11 | http://www.erata.net/Metrics.NET/metrics_32.png
12 | false
13 | (Legacy .NET 4.0 Version) The library provides support for capturing: Gauges, Counters, Meters, Histograms and Timers
14 | (Legacy .NET 4.0 Version) .NET Port of the Java Metrics Library, a library for collecting metrics. Library also provides Health Checks.
15 | Iulian Margarintescu
16 | metrics measurements charts timer histogram duration graphite health checks
17 |
18 |
--------------------------------------------------------------------------------
/packages/Metrics.NET-net40.0.2.3/lib/net40/Metrics.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/Metrics.NET-net40.0.2.3/lib/net40/Metrics.dll
--------------------------------------------------------------------------------
/packages/Metrics.NET-net40.0.2.3/lib/net40/Metrics.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/Metrics.NET-net40.0.2.3/lib/net40/Metrics.pdb
--------------------------------------------------------------------------------
/packages/Modernizr.1.7/Modernizr.1.7.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/Modernizr.1.7/Modernizr.1.7.nupkg
--------------------------------------------------------------------------------
/packages/Modernizr.1.7/Modernizr.1.7.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Modernizr
5 | 1.7
6 | Modernizr
7 | Faruk Ateş, Paul Irish, Alex Sexton
8 | Faruk Ateş, Paul Irish, Alex Sexton
9 | http://www.modernizr.com/license/
10 | http://www.modernizr.com/
11 | https://nugetgallery.blob.core.windows.net/icons/Modernizr.1.7.png
12 | false
13 | Modernizr adds classes to the html element which allow you to target specific browser functionality in your stylesheet. You don't actually need to write any Javascript to use it.
14 | Modernizr is a small and simple JavaScript library that helps you take advantage of emerging web technologies (CSS3, HTML5) while still maintaining a fine level of control over older browsers that may not yet support these new technologies.
15 | Modernizr is a small and simple JavaScript library that helps you take advantage of emerging web technologies (CSS3, HTML 5) while still maintaining a fine level of control over older browsers that may not yet support these new technologies.
16 | JavaScript HTML HTML5 CSS CSS3 SVG
17 |
18 |
--------------------------------------------------------------------------------
/packages/jQuery.1.5.1/jQuery.1.5.1.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/jQuery.1.5.1/jQuery.1.5.1.nupkg
--------------------------------------------------------------------------------
/packages/jQuery.1.5.1/jQuery.1.5.1.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | jQuery
5 | 1.5.1
6 | jQuery
7 | John Resig
8 | John Resig
9 | http://jquery.org/license
10 | http://jquery.com/
11 | https://nugetgallery.blob.core.windows.net/icons/jQuery.1.5.1.png
12 | false
13 | jQuery is a new kind of JavaScript Library.
14 | jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript.
15 | jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development.
16 | jQuery
17 |
18 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/jquery.ui.accordion.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Accordion 1.8.11
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Accordion#theming
9 | */
10 | /* IE/Win - Fix animation bug - #4615 */
11 | .ui-accordion { width: 100%; }
12 | .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
13 | .ui-accordion .ui-accordion-li-fix { display: inline; }
14 | .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
15 | .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
16 | .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
17 | .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
18 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
19 | .ui-accordion .ui-accordion-content-active { display: block; }
20 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/jquery.ui.all.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI CSS Framework 1.8.11
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Theming
9 | */
10 | @import "jquery.ui.base.css";
11 | @import "jquery.ui.theme.css";
12 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/jquery.ui.autocomplete.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Autocomplete 1.8.11
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Autocomplete#theming
9 | */
10 | .ui-autocomplete { position: absolute; cursor: default; }
11 |
12 | /* workarounds */
13 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
14 |
15 | /*
16 | * jQuery UI Menu 1.8.11
17 | *
18 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
19 | * Dual licensed under the MIT or GPL Version 2 licenses.
20 | * http://jquery.org/license
21 | *
22 | * http://docs.jquery.com/UI/Menu#theming
23 | */
24 | .ui-menu {
25 | list-style:none;
26 | padding: 2px;
27 | margin: 0;
28 | display:block;
29 | float: left;
30 | }
31 | .ui-menu .ui-menu {
32 | margin-top: -3px;
33 | }
34 | .ui-menu .ui-menu-item {
35 | margin:0;
36 | padding: 0;
37 | zoom: 1;
38 | float: left;
39 | clear: left;
40 | width: 100%;
41 | }
42 | .ui-menu .ui-menu-item a {
43 | text-decoration:none;
44 | display:block;
45 | padding:.2em .4em;
46 | line-height:1.5;
47 | zoom:1;
48 | }
49 | .ui-menu .ui-menu-item a.ui-state-hover,
50 | .ui-menu .ui-menu-item a.ui-state-active {
51 | font-weight: normal;
52 | margin: -1px;
53 | }
54 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/jquery.ui.base.css:
--------------------------------------------------------------------------------
1 | @import url("jquery.ui.core.css");
2 | @import url("jquery.ui.resizable.css");
3 | @import url("jquery.ui.selectable.css");
4 | @import url("jquery.ui.accordion.css");
5 | @import url("jquery.ui.autocomplete.css");
6 | @import url("jquery.ui.button.css");
7 | @import url("jquery.ui.dialog.css");
8 | @import url("jquery.ui.slider.css");
9 | @import url("jquery.ui.tabs.css");
10 | @import url("jquery.ui.datepicker.css");
11 | @import url("jquery.ui.progressbar.css");
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/jquery.ui.button.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Button 1.8.11
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Button#theming
9 | */
10 | .ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
11 | .ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
12 | button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
13 | .ui-button-icons-only { width: 3.4em; }
14 | button.ui-button-icons-only { width: 3.7em; }
15 |
16 | /*button text element */
17 | .ui-button .ui-button-text { display: block; line-height: 1.4; }
18 | .ui-button-text-only .ui-button-text { padding: .4em 1em; }
19 | .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
20 | .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
21 | .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
22 | .ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
23 | /* no icon support for input elements, provide padding by default */
24 | input.ui-button { padding: .4em 1em; }
25 |
26 | /*button icon element(s) */
27 | .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; }
28 | .ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
29 | .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; }
30 | .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; }
31 | .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
32 |
33 | /*button sets*/
34 | .ui-buttonset { margin-right: 7px; }
35 | .ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }
36 |
37 | /* workarounds */
38 | button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
39 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/jquery.ui.core.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI CSS Framework 1.8.11
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Theming/API
9 | */
10 |
11 | /* Layout helpers
12 | ----------------------------------*/
13 | .ui-helper-hidden { display: none; }
14 | .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
15 | .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
16 | .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
17 | .ui-helper-clearfix { display: inline-block; }
18 | /* required comment for clearfix to work in Opera \*/
19 | * html .ui-helper-clearfix { height:1%; }
20 | .ui-helper-clearfix { display:block; }
21 | /* end clearfix */
22 | .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
23 |
24 |
25 | /* Interaction Cues
26 | ----------------------------------*/
27 | .ui-state-disabled { cursor: default !important; }
28 |
29 |
30 | /* Icons
31 | ----------------------------------*/
32 |
33 | /* states and images */
34 | .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
35 |
36 |
37 | /* Misc visuals
38 | ----------------------------------*/
39 |
40 | /* Overlays */
41 | .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
42 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/jquery.ui.datepicker.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Datepicker 1.8.11
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Datepicker#theming
9 | */
10 | .ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
11 | .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
12 | .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
13 | .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
14 | .ui-datepicker .ui-datepicker-prev { left:2px; }
15 | .ui-datepicker .ui-datepicker-next { right:2px; }
16 | .ui-datepicker .ui-datepicker-prev-hover { left:1px; }
17 | .ui-datepicker .ui-datepicker-next-hover { right:1px; }
18 | .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
19 | .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
20 | .ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
21 | .ui-datepicker select.ui-datepicker-month-year {width: 100%;}
22 | .ui-datepicker select.ui-datepicker-month,
23 | .ui-datepicker select.ui-datepicker-year { width: 49%;}
24 | .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
25 | .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
26 | .ui-datepicker td { border: 0; padding: 1px; }
27 | .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
28 | .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
29 | .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
30 | .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
31 |
32 | /* with multiple calendars */
33 | .ui-datepicker.ui-datepicker-multi { width:auto; }
34 | .ui-datepicker-multi .ui-datepicker-group { float:left; }
35 | .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
36 | .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
37 | .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
38 | .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
39 | .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
40 | .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
41 | .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
42 | .ui-datepicker-row-break { clear:both; width:100%; }
43 |
44 | /* RTL support */
45 | .ui-datepicker-rtl { direction: rtl; }
46 | .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
47 | .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
48 | .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
49 | .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
50 | .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
51 | .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
52 | .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
53 | .ui-datepicker-rtl .ui-datepicker-group { float:right; }
54 | .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
55 | .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
56 |
57 | /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
58 | .ui-datepicker-cover {
59 | display: none; /*sorry for IE5*/
60 | display/**/: block; /*sorry for IE5*/
61 | position: absolute; /*must have*/
62 | z-index: -1; /*must have*/
63 | filter: mask(); /*must have*/
64 | top: -4px; /*must have*/
65 | left: -4px; /*must have*/
66 | width: 200px; /*must have*/
67 | height: 200px; /*must have*/
68 | }
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/jquery.ui.dialog.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Dialog 1.8.11
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Dialog#theming
9 | */
10 | .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
11 | .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; }
12 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; }
13 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
14 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
15 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
16 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
17 | .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; }
18 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
19 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
20 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
21 | .ui-draggable .ui-dialog-titlebar { cursor: move; }
22 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/jquery.ui.progressbar.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Progressbar 1.8.11
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Progressbar#theming
9 | */
10 | .ui-progressbar { height:2em; text-align: left; }
11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/jquery.ui.resizable.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Resizable 1.8.11
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Resizable#theming
9 | */
10 | .ui-resizable { position: relative;}
11 | .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
12 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
13 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
14 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
15 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
16 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
17 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
18 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
19 | .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
20 | .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/jquery.ui.selectable.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Selectable 1.8.11
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Selectable#theming
9 | */
10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
11 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/jquery.ui.slider.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Slider 1.8.11
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Slider#theming
9 | */
10 | .ui-slider { position: relative; text-align: left; }
11 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
12 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
13 |
14 | .ui-slider-horizontal { height: .8em; }
15 | .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
16 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
17 | .ui-slider-horizontal .ui-slider-range-min { left: 0; }
18 | .ui-slider-horizontal .ui-slider-range-max { right: 0; }
19 |
20 | .ui-slider-vertical { width: .8em; height: 100px; }
21 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
22 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
23 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; }
24 | .ui-slider-vertical .ui-slider-range-max { top: 0; }
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/Content/Content/themes/base/jquery.ui.tabs.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Tabs 1.8.11
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Tabs#theming
9 | */
10 | .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") */
11 | .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
12 | .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
13 | .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
14 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
15 | .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
16 | .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
17 | .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
18 | .ui-tabs .ui-tabs-hide { display: none !important; }
19 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/jQuery.UI.Combined.1.8.11.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/jQuery.UI.Combined.1.8.11/jQuery.UI.Combined.1.8.11.nupkg
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.8.11/jQuery.UI.Combined.1.8.11.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | jQuery.UI.Combined
5 | 1.8.11
6 | jQuery UI (Combined Library)
7 | jQuery UI Team
8 | jQuery UI Team
9 | http://jquery.org/license
10 | http://jqueryui.com/
11 | http://nuget.org/Media/Default/Packages/jQuery.UI.Combined/1.8.9/jQueryUILogo.png
12 | false
13 | jQuery UI is an open source library of interface components — interactions, full-featured widgets, and animation effects — based on the stellar jQuery javascript library . Each component is built according to jQuery's event-driven architecture (find something, manipulate it) and is themeable, making it easy for developers of any skill level to integrate and extend into their own code.
14 | The full jQuery UI library as a single combined file. Includes the base theme.
15 | jQuery jQueryUI plugins
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/packages/jQuery.Validation.1.8/jQuery.Validation.1.8.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/jQuery.Validation.1.8/jQuery.Validation.1.8.nupkg
--------------------------------------------------------------------------------
/packages/jQuery.Validation.1.8/jQuery.Validation.1.8.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | jQuery.Validation
5 | 1.8
6 | jQuery Validation
7 | Jörn Zaefferer
8 | Jörn Zaefferer
9 | http://bassistance.de/jquery-plugins/jquery-plugin-validation/
10 | false
11 | This jQuery plugin makes simple clientside form validation trivial, while offering lots of option for customization. That makes a good choice if you’re building something new from scratch, but also when you’re trying to integrate it into an existing application with lots of existing markup. The plugin comes bundled with a useful set of validation methods, including URL and email validation, while providing an API to write your own methods. All bundled methods come with default error messages in english and translations into 32 languages.
12 | A jQuery plugin that makes simple clientside form validation trivial.
13 | jQuery plugins
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/packages/jQuery.vsdoc.1.5.1/Tools/install.ps1:
--------------------------------------------------------------------------------
1 | param($installPath, $toolsPath, $package, $project)
2 |
3 | $extId = "JScriptIntelliSenseParaExtension.Microsoft.039ee76c-3c7f-4281-ad23-f6528ab18623"
4 | $extManager = [Microsoft.VisualStudio.Shell.Package]::GetGlobalService([Microsoft.VisualStudio.ExtensionManager.SVsExtensionManager])
5 | $copyOverParaFile = $false
6 | try {
7 | $copyOverParaFile = $extManager.GetInstalledExtension($extId).State -eq "Enabled"
8 | }
9 | catch [Microsoft.VisualStudio.ExtensionManager.NotInstalledException] {
10 | #Extension is not installed
11 | }
12 |
13 | if ($copyOverParaFile) {
14 | #Copy the -vsdoc-para file over the -vsdoc file
15 | $projectFolder = Split-Path -Parent $project.FileName
16 | $paraVsDocPath = Join-Path $toolsPath jquery-1.5.1-vsdoc-para.js
17 | $vsDocPath = Join-Path $projectFolder Scripts\jquery-1.5.1-vsdoc.js
18 | Copy-Item $paraVsDocPath $vsDocPath -Force
19 | }
--------------------------------------------------------------------------------
/packages/jQuery.vsdoc.1.5.1/Tools/uninstall.ps1:
--------------------------------------------------------------------------------
1 | param($installPath, $toolsPath, $package, $project)
2 |
3 | #Forcibly delete the -vsdoc file
4 | $projectFolder = Split-Path -Parent $project.FileName
5 | $projVsDocPath = Join-Path $projectFolder Scripts\jquery-1.5.1-vsdoc.js
6 | $origVsDocPath = Join-Path $installPath Content\Scripts\jquery-1.5.1-vsdoc.js
7 | $origVsDocParaPath = Join-Path $toolsPath jquery-1.5.1-vsdoc-para.js
8 |
9 | function Get-Checksum($file) {
10 | $cryptoProvider = New-Object "System.Security.Cryptography.MD5CryptoServiceProvider"
11 |
12 | $fileInfo = Get-Item "$file"
13 | trap { ;
14 | continue } $stream = $fileInfo.OpenRead()
15 | if ($? -eq $false) {
16 | #Write-Host "Couldn't open file for reading"
17 | return $null
18 | }
19 |
20 | $bytes = $cryptoProvider.ComputeHash($stream)
21 | $checksum = ''
22 | foreach ($byte in $bytes) {
23 | $checksum += $byte.ToString('x2')
24 | }
25 |
26 | $stream.Close() | Out-Null
27 |
28 | return $checksum
29 | }
30 |
31 | if (Test-Path $projVsDocPath) {
32 | #Copy the original -vsdoc file over the -vsdoc file modified during install
33 | #Normal uninstall logic will then kick in
34 |
35 | if ((Get-Checksum $projVsDocPath) -eq (Get-Checksum $origVsDocParaPath)) {
36 | #Write-Host "Copying orig vsdoc file over"
37 | Copy-Item $origVsDocPath $projVsDocPath -Force
38 | }
39 | else {
40 | #Write-Host "vsdoc file has changed"
41 | }
42 | }
43 | else {
44 | #Write-Host "vsdoc file not found in project"
45 | }
46 |
--------------------------------------------------------------------------------
/packages/jQuery.vsdoc.1.5.1/jQuery.vsdoc.1.5.1.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/geffzhang/AspNetPerformanceMetrics/71227f9705f83237f62e92957b5920b35cec6a83/packages/jQuery.vsdoc.1.5.1/jQuery.vsdoc.1.5.1.nupkg
--------------------------------------------------------------------------------
/packages/jQuery.vsdoc.1.5.1/jQuery.vsdoc.1.5.1.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | jQuery.vsdoc
5 | 1.5.1
6 | jQuery Visual Studio 2010 IntelliSense
7 | Microsoft
8 | Microsoft
9 | https://nugetgallery.blob.core.windows.net/icons/jQuery.vsdoc.1.5.1.png
10 | false
11 | Includes vsdoc files for jQuery 1.5 that provide IntelliSense in Visual Studio 2010. For best experience get the JScript Editor Extensions before installing this package, from visualstudiogallery.msdn.microsoft.com/en-us/872d27ee-38c7-4a97-98dc-0d8a431cc2ed
12 | Includes vsdoc files for jQuery 1.5 that provide IntelliSense in Visual Studio 2010. For best experience get the JScript Editor Extensions before installing this package, from visualstudiogallery.msdn.microsoft.com/en-us/872d27ee-38c7-4a97-98dc-0d8a431cc2ed
13 | jQuery VS IntelliSense
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/packages/repositories.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------