├── Configuration
├── GalleryAdminCredFile.clixml
├── GalleryUserCredFile.clixml
├── PSPrivateGallery.ps1
├── PSPrivateGalleryEnvironment.psd1
├── PSPrivateGalleryPublish.ps1
└── PSPrivateGalleryPublishEnvironment.psd1
├── Installers
├── SqlLocalDB_x64.msi
└── rewrite_amd64.msi
├── LICENSE.txt
├── Modules
├── PSGallery
│ ├── DSCResources
│ │ ├── PSGalleryDatabase
│ │ │ ├── PSGalleryDatabase.psd1
│ │ │ └── PSGalleryDatabase.schema.psm1
│ │ ├── PSGalleryDatabaseMigration
│ │ │ ├── PSGalleryDatabaseMigration.psm1
│ │ │ └── PSGalleryDatabaseMigration.schema.mof
│ │ └── PSGalleryWebServer
│ │ │ ├── PSGalleryWebServer.psd1
│ │ │ └── PSGalleryWebServer.schema.psm1
│ ├── GalleryContent
│ │ ├── App_Code
│ │ │ └── ViewHelpers.cshtml
│ │ ├── App_Data
│ │ │ └── Files
│ │ │ │ └── Content
│ │ │ │ ├── Alert.md
│ │ │ │ ├── Home.html
│ │ │ │ ├── Privacy-Policy.md
│ │ │ │ └── Terms-Of-Use.md
│ │ ├── App_Offline-Planned.htm
│ │ ├── App_Offline-Unplanned.htm
│ │ ├── Areas
│ │ │ └── Admin
│ │ │ │ ├── DynamicData
│ │ │ │ ├── Content
│ │ │ │ │ ├── GridViewPager.ascx
│ │ │ │ │ └── Images
│ │ │ │ │ │ ├── Back.gif
│ │ │ │ │ │ ├── PgFirst.gif
│ │ │ │ │ │ ├── PgLast.gif
│ │ │ │ │ │ ├── PgNext.gif
│ │ │ │ │ │ ├── PgPrev.gif
│ │ │ │ │ │ ├── header_back.gif
│ │ │ │ │ │ └── plus.gif
│ │ │ │ ├── Default.aspx
│ │ │ │ ├── EntityTemplates
│ │ │ │ │ ├── Default.ascx
│ │ │ │ │ ├── Default_Edit.ascx
│ │ │ │ │ └── Default_Insert.ascx
│ │ │ │ ├── FieldTemplates
│ │ │ │ │ ├── Boolean.ascx
│ │ │ │ │ ├── Boolean_Edit.ascx
│ │ │ │ │ ├── Children.ascx
│ │ │ │ │ ├── Children_Insert.ascx
│ │ │ │ │ ├── DateTime.ascx
│ │ │ │ │ ├── DateTime_Edit.ascx
│ │ │ │ │ ├── Decimal_Edit.ascx
│ │ │ │ │ ├── EmailAddress.ascx
│ │ │ │ │ ├── Enumeration.ascx
│ │ │ │ │ ├── Enumeration_Edit.ascx
│ │ │ │ │ ├── ForeignKey.ascx
│ │ │ │ │ ├── ForeignKey_Edit.ascx
│ │ │ │ │ ├── Integer_Edit.ascx
│ │ │ │ │ ├── ManyToMany.ascx
│ │ │ │ │ ├── ManyToMany_Edit.ascx
│ │ │ │ │ ├── MultilineText_Edit.ascx
│ │ │ │ │ ├── Text.ascx
│ │ │ │ │ ├── Text_Edit.ascx
│ │ │ │ │ └── Url.ascx
│ │ │ │ ├── Filters
│ │ │ │ │ ├── Boolean.ascx
│ │ │ │ │ ├── Enumeration.ascx
│ │ │ │ │ └── ForeignKey.ascx
│ │ │ │ ├── PageTemplates
│ │ │ │ │ ├── Details.aspx
│ │ │ │ │ ├── Edit.aspx
│ │ │ │ │ ├── Insert.aspx
│ │ │ │ │ └── List.aspx
│ │ │ │ ├── Site.css
│ │ │ │ ├── Site.master
│ │ │ │ └── web.config
│ │ │ │ └── Views
│ │ │ │ ├── Config
│ │ │ │ └── Index.cshtml
│ │ │ │ ├── Home
│ │ │ │ └── Index.cshtml
│ │ │ │ ├── Lucene
│ │ │ │ └── Index.cshtml
│ │ │ │ ├── Web.config
│ │ │ │ └── _ViewStart.cshtml
│ │ ├── Branding
│ │ │ ├── Content
│ │ │ │ ├── Layout.css
│ │ │ │ ├── PageStylings.css
│ │ │ │ └── Site.css
│ │ │ └── Views
│ │ │ │ ├── Authentication
│ │ │ │ ├── LogOn.cshtml
│ │ │ │ └── _Register.cshtml
│ │ │ │ ├── Errors
│ │ │ │ ├── InternalError.cshtml
│ │ │ │ └── NotFound.cshtml
│ │ │ │ ├── Packages
│ │ │ │ ├── ContactOwners.cshtml
│ │ │ │ ├── Delete.cshtml
│ │ │ │ ├── DisplayPackage.cshtml
│ │ │ │ ├── Download.cshtml
│ │ │ │ ├── ReportAbuse.cshtml
│ │ │ │ ├── UploadPackage.cshtml
│ │ │ │ └── _ListPackage.cshtml
│ │ │ │ ├── Pages
│ │ │ │ ├── Contact.cshtml
│ │ │ │ ├── GettingStarted.cshtml
│ │ │ │ └── Home.cshtml
│ │ │ │ ├── Shared
│ │ │ │ ├── Layout.cshtml
│ │ │ │ ├── LayoutFooter.cshtml
│ │ │ │ ├── ListPackages.cshtml
│ │ │ │ ├── SiteMenu.cshtml
│ │ │ │ └── UserDisplay.cshtml
│ │ │ │ ├── Statistics
│ │ │ │ └── Index.cshtml
│ │ │ │ ├── Users
│ │ │ │ ├── Account.cshtml
│ │ │ │ └── Thanks.cshtml
│ │ │ │ ├── _ViewStart.cshtml
│ │ │ │ └── web.config
│ │ ├── Content
│ │ │ ├── Images
│ │ │ │ ├── YourPackage.png
│ │ │ │ ├── arrow.png
│ │ │ │ ├── errorPage.png
│ │ │ │ ├── headerbackground.png
│ │ │ │ ├── icons
│ │ │ │ │ ├── nuget_32_mono_b.png
│ │ │ │ │ └── nuget_32_mono_w.png
│ │ │ │ ├── inputBackground.png
│ │ │ │ ├── packageDefaultIcon-50x50.png
│ │ │ │ ├── packageDefaultIcon.png
│ │ │ │ ├── packageOwnerActionIcons.png
│ │ │ │ ├── powershellgetArchitecture.png
│ │ │ │ ├── required.png
│ │ │ │ └── searchButton.png
│ │ │ ├── Layout.css
│ │ │ ├── Logos
│ │ │ │ ├── ConfigGalleryLogo.png
│ │ │ │ ├── hero.png
│ │ │ │ ├── herowithlogo.png
│ │ │ │ ├── nugetLogoFooter.png
│ │ │ │ ├── nugetlogo.png
│ │ │ │ └── outercurve.png
│ │ │ ├── PageStylings.css
│ │ │ ├── Site.css
│ │ │ ├── SyntaxHighlighter
│ │ │ │ ├── shCore.css
│ │ │ │ ├── shCoreDefault.css
│ │ │ │ ├── shCoreDjango.css
│ │ │ │ ├── shCoreEclipse.css
│ │ │ │ ├── shCoreEmacs.css
│ │ │ │ ├── shCoreFadeToGrey.css
│ │ │ │ ├── shCoreMDUltra.css
│ │ │ │ ├── shCoreMidnight.css
│ │ │ │ ├── shCoreRDark.css
│ │ │ │ ├── shThemeDefault.css
│ │ │ │ ├── shThemeDjango.css
│ │ │ │ ├── shThemeEclipse.css
│ │ │ │ ├── shThemeEmacs.css
│ │ │ │ ├── shThemeFadeToGrey.css
│ │ │ │ ├── shThemeMDUltra.css
│ │ │ │ ├── shThemeMidnight.css
│ │ │ │ └── shThemeRDark.css
│ │ │ ├── clippy.swf
│ │ │ ├── font-awesome
│ │ │ │ ├── font-awesome-ie7.min.css
│ │ │ │ ├── font-awesome.css
│ │ │ │ └── font-awesome.min.css
│ │ │ ├── font
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ └── fontawesome-webfont.woff
│ │ │ └── themes
│ │ │ │ ├── base
│ │ │ │ ├── images
│ │ │ │ │ ├── animated-overlay.gif
│ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ │ │ ├── jquery-ui.css
│ │ │ │ ├── jquery.ui.accordion.css
│ │ │ │ ├── jquery.ui.all.css
│ │ │ │ ├── jquery.ui.autocomplete.css
│ │ │ │ ├── jquery.ui.base.css
│ │ │ │ ├── jquery.ui.button.css
│ │ │ │ ├── jquery.ui.core.css
│ │ │ │ ├── jquery.ui.datepicker.css
│ │ │ │ ├── jquery.ui.dialog.css
│ │ │ │ ├── jquery.ui.menu.css
│ │ │ │ ├── jquery.ui.progressbar.css
│ │ │ │ ├── jquery.ui.resizable.css
│ │ │ │ ├── jquery.ui.selectable.css
│ │ │ │ ├── jquery.ui.slider.css
│ │ │ │ ├── jquery.ui.spinner.css
│ │ │ │ ├── jquery.ui.tabs.css
│ │ │ │ ├── jquery.ui.theme.css
│ │ │ │ ├── jquery.ui.tooltip.css
│ │ │ │ └── minified
│ │ │ │ │ ├── images
│ │ │ │ │ ├── animated-overlay.gif
│ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ │ │ │ ├── jquery-ui.min.css
│ │ │ │ │ ├── jquery.ui.accordion.min.css
│ │ │ │ │ ├── jquery.ui.autocomplete.min.css
│ │ │ │ │ ├── jquery.ui.button.min.css
│ │ │ │ │ ├── jquery.ui.core.min.css
│ │ │ │ │ ├── jquery.ui.datepicker.min.css
│ │ │ │ │ ├── jquery.ui.dialog.min.css
│ │ │ │ │ ├── jquery.ui.menu.min.css
│ │ │ │ │ ├── jquery.ui.progressbar.min.css
│ │ │ │ │ ├── jquery.ui.resizable.min.css
│ │ │ │ │ ├── jquery.ui.selectable.min.css
│ │ │ │ │ ├── jquery.ui.slider.min.css
│ │ │ │ │ ├── jquery.ui.spinner.min.css
│ │ │ │ │ ├── jquery.ui.tabs.min.css
│ │ │ │ │ ├── jquery.ui.theme.min.css
│ │ │ │ │ └── jquery.ui.tooltip.min.css
│ │ │ │ └── custom
│ │ │ │ ├── jquery-ui-1.10.3.custom.css
│ │ │ │ └── jquery-ui-1.10.3.custom.min.css
│ │ ├── D3 LICENSE.txt
│ │ ├── DataServices
│ │ │ ├── V1Feed.svc
│ │ │ ├── V2CuratedFeed.svc
│ │ │ └── V2Feed.svc
│ │ ├── Public
│ │ │ ├── Error.html
│ │ │ ├── clientaccesspolicy.xml
│ │ │ ├── configgallery.ico
│ │ │ └── favicon.ico
│ │ ├── Scripts
│ │ │ ├── async-file-upload.js
│ │ │ ├── d3.v3.js
│ │ │ ├── d3.v3.min.js
│ │ │ ├── jquery-1.6.4.js
│ │ │ ├── jquery-1.6.4.min.js
│ │ │ ├── jquery-ui-1.10.3.js
│ │ │ ├── jquery-ui-1.10.3.min.js
│ │ │ ├── jquery.validate-vsdoc.js
│ │ │ ├── jquery.validate.js
│ │ │ ├── jquery.validate.min.js
│ │ │ ├── jquery.validate.unobtrusive.js
│ │ │ ├── jquery.validate.unobtrusive.min.js
│ │ │ ├── knockout-2.2.1.debug.js
│ │ │ ├── knockout-2.2.1.js
│ │ │ ├── modernizr-2.6.2.js
│ │ │ ├── nugetgallery.js
│ │ │ ├── perpackagestatsgraphs.js
│ │ │ ├── stats.js
│ │ │ ├── statsdimensions.js
│ │ │ └── statsgraphs.js
│ │ ├── T4MVC.tt.settings.t4
│ │ ├── Views
│ │ │ ├── Authentication
│ │ │ │ ├── LogOn.cshtml
│ │ │ │ ├── _Register.cshtml
│ │ │ │ └── _SignIn.cshtml
│ │ │ ├── CuratedFeeds
│ │ │ │ └── CuratedFeed.cshtml
│ │ │ ├── CuratedPackages
│ │ │ │ └── CreateCuratedPackageForm.cshtml
│ │ │ ├── Errors
│ │ │ │ ├── CookieError.cshtml
│ │ │ │ ├── InternalError.cshtml
│ │ │ │ ├── NotFound.cshtml
│ │ │ │ └── ReadOnlyMode.cshtml
│ │ │ ├── Packages
│ │ │ │ ├── ConfirmOwner.cshtml
│ │ │ │ ├── ContactOwners.cshtml
│ │ │ │ ├── Delete.cshtml
│ │ │ │ ├── DisplayPackage.cshtml
│ │ │ │ ├── Download.cshtml
│ │ │ │ ├── Edit.cshtml
│ │ │ │ ├── ManagePackageOwners.cshtml
│ │ │ │ ├── ReportAbuse.cshtml
│ │ │ │ ├── ReportMyPackage.cshtml
│ │ │ │ ├── UnverifiablePackage.cshtml
│ │ │ │ ├── UploadPackage.cshtml
│ │ │ │ ├── VerifyPackage.cshtml
│ │ │ │ └── _PackageDependencies.cshtml
│ │ │ ├── Pages
│ │ │ │ ├── Contact.cshtml
│ │ │ │ ├── Home.cshtml
│ │ │ │ ├── Privacy.cshtml
│ │ │ │ └── Terms.cshtml
│ │ │ ├── Shared
│ │ │ │ ├── EditorTemplates
│ │ │ │ │ └── Object.cshtml
│ │ │ │ ├── Layout.cshtml
│ │ │ │ ├── LayoutFooter.cshtml
│ │ │ │ ├── ListPackages.cshtml
│ │ │ │ ├── SiteMenu.cshtml
│ │ │ │ ├── Title.cshtml
│ │ │ │ ├── TwoColumnLayout.cshtml
│ │ │ │ ├── UserDisplay.cshtml
│ │ │ │ └── _ListPackage.cshtml
│ │ │ ├── Statistics
│ │ │ │ ├── Index.cshtml
│ │ │ │ ├── PackageDownloadsByVersion.cshtml
│ │ │ │ ├── PackageDownloadsDetail.cshtml
│ │ │ │ ├── PackageVersions.cshtml
│ │ │ │ ├── Packages.cshtml
│ │ │ │ ├── _LastUpdated.cshtml
│ │ │ │ └── _PivotTable.cshtml
│ │ │ ├── Users
│ │ │ │ ├── Account.cshtml
│ │ │ │ ├── Confirm.cshtml
│ │ │ │ ├── ConfirmationRequired.cshtml
│ │ │ │ ├── ForgotPassword.cshtml
│ │ │ │ ├── Packages.cshtml
│ │ │ │ ├── PasswordChanged.cshtml
│ │ │ │ ├── PasswordSent.cshtml
│ │ │ │ ├── Profiles.cshtml
│ │ │ │ ├── ResetPassword.cshtml
│ │ │ │ └── Thanks.cshtml
│ │ │ ├── _ViewStart.cshtml
│ │ │ └── web.config
│ │ ├── Web.Debug.config
│ │ ├── Web.Release.config
│ │ ├── Web.config
│ │ ├── api
│ │ │ └── Web.config
│ │ ├── bin
│ │ │ ├── AnglicanGeek.MarkdownMailer.dll
│ │ │ ├── Antlr3.Runtime.dll
│ │ │ ├── DynamicData.EFCodeFirstProvider.dll
│ │ │ ├── Elmah.Contrib.Mvc.dll
│ │ │ ├── Elmah.dll
│ │ │ ├── EntityFramework.dll
│ │ │ ├── EntityFramework.xml
│ │ │ ├── Glimpse.Ado.dll
│ │ │ ├── Glimpse.AspNet.dll
│ │ │ ├── Glimpse.Core.dll
│ │ │ ├── Glimpse.EF43.dll
│ │ │ ├── Glimpse.Mvc4.dll
│ │ │ ├── ICSharpCode.SharpZipLib.dll
│ │ │ ├── Lucene.Net.dll
│ │ │ ├── Lucene.Net.pdb
│ │ │ ├── Lucene.Net.xml
│ │ │ ├── MarkdownSharp.dll
│ │ │ ├── MarkdownSharp.pdb
│ │ │ ├── MarkdownSharp.xml
│ │ │ ├── Microsoft.ApplicationServer.Caching.Client.dll
│ │ │ ├── Microsoft.ApplicationServer.Caching.Client.xml
│ │ │ ├── Microsoft.ApplicationServer.Caching.Core.dll
│ │ │ ├── Microsoft.ApplicationServer.Caching.Core.xml
│ │ │ ├── Microsoft.AspNet.Identity.Core.dll
│ │ │ ├── Microsoft.AspNet.Identity.Core.xml
│ │ │ ├── Microsoft.Data.Edm.dll
│ │ │ ├── Microsoft.Data.Edm.xml
│ │ │ ├── Microsoft.Data.OData.dll
│ │ │ ├── Microsoft.Data.OData.xml
│ │ │ ├── Microsoft.Data.Services.Client.dll
│ │ │ ├── Microsoft.Data.Services.Client.xml
│ │ │ ├── Microsoft.Data.Services.dll
│ │ │ ├── Microsoft.Data.Services.xml
│ │ │ ├── Microsoft.Owin.Host.SystemWeb.dll
│ │ │ ├── Microsoft.Owin.Host.SystemWeb.xml
│ │ │ ├── Microsoft.Owin.Security.Cookies.dll
│ │ │ ├── Microsoft.Owin.Security.Cookies.xml
│ │ │ ├── Microsoft.Owin.Security.MicrosoftAccount.dll
│ │ │ ├── Microsoft.Owin.Security.MicrosoftAccount.xml
│ │ │ ├── Microsoft.Owin.Security.dll
│ │ │ ├── Microsoft.Owin.Security.xml
│ │ │ ├── Microsoft.Owin.dll
│ │ │ ├── Microsoft.Owin.xml
│ │ │ ├── Microsoft.RMDTL.Test.AIReliabilityModel.dll
│ │ │ ├── Microsoft.RMDTL.Test.AIReliabilityModel.pdb
│ │ │ ├── Microsoft.Web.DistributedCache.dll
│ │ │ ├── Microsoft.Web.Helpers.dll
│ │ │ ├── Microsoft.Web.Infrastructure.dll
│ │ │ ├── Microsoft.Web.XmlTransform.dll
│ │ │ ├── Microsoft.WindowsAzure.Configuration.dll
│ │ │ ├── Microsoft.WindowsAzure.Diagnostics.StorageUtility.dll
│ │ │ ├── Microsoft.WindowsAzure.Diagnostics.dll
│ │ │ ├── Microsoft.WindowsAzure.Diagnostics.xml
│ │ │ ├── Microsoft.WindowsAzure.ServiceRuntime.dll
│ │ │ ├── Microsoft.WindowsAzure.Storage.dll
│ │ │ ├── Microsoft.WindowsAzure.Storage.pdb
│ │ │ ├── Microsoft.WindowsAzure.Storage.xml
│ │ │ ├── Microsoft.WindowsFabric.Common.dll
│ │ │ ├── Microsoft.WindowsFabric.Data.Common.dll
│ │ │ ├── MvcHaack.Ajax.dll
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ ├── Newtonsoft.Json.xml
│ │ │ ├── Ninject.Web.Common.dll
│ │ │ ├── Ninject.Web.Common.pdb
│ │ │ ├── Ninject.Web.Common.xml
│ │ │ ├── Ninject.Web.Mvc.dll
│ │ │ ├── Ninject.Web.Mvc.pdb
│ │ │ ├── Ninject.Web.Mvc.xml
│ │ │ ├── Ninject.dll
│ │ │ ├── Ninject.pdb
│ │ │ ├── Ninject.xml
│ │ │ ├── NuGet.Core.dll
│ │ │ ├── NuGetGallery.Core.dll
│ │ │ ├── NuGetGallery.Core.pdb
│ │ │ ├── NuGetGallery.dll
│ │ │ ├── NuGetGallery.pdb
│ │ │ ├── ODataNullPropagationVisitor.dll
│ │ │ ├── Owin.dll
│ │ │ ├── PoliteCaptcha.dll
│ │ │ ├── QueryInterceptor.dll
│ │ │ ├── Recaptcha.dll
│ │ │ ├── Recaptcha.pdb
│ │ │ ├── RouteMagic.dll
│ │ │ ├── System.Spatial.dll
│ │ │ ├── System.Spatial.xml
│ │ │ ├── System.Web.Helpers.dll
│ │ │ ├── System.Web.Helpers.xml
│ │ │ ├── System.Web.Mvc.dll
│ │ │ ├── System.Web.Mvc.xml
│ │ │ ├── System.Web.Optimization.dll
│ │ │ ├── System.Web.Razor.dll
│ │ │ ├── System.Web.Razor.xml
│ │ │ ├── System.Web.WebPages.Deployment.dll
│ │ │ ├── System.Web.WebPages.Deployment.xml
│ │ │ ├── System.Web.WebPages.Razor.dll
│ │ │ ├── System.Web.WebPages.Razor.xml
│ │ │ ├── System.Web.WebPages.dll
│ │ │ ├── System.Web.WebPages.xml
│ │ │ ├── WebActivator.dll
│ │ │ ├── WebBackgrounder.EntityFramework.dll
│ │ │ ├── WebBackgrounder.dll
│ │ │ ├── WebGrease.dll
│ │ │ ├── de
│ │ │ │ ├── Microsoft.Data.Edm.resources.dll
│ │ │ │ ├── Microsoft.Data.OData.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.resources.dll
│ │ │ │ └── System.Spatial.resources.dll
│ │ │ ├── es
│ │ │ │ ├── Microsoft.Data.Edm.resources.dll
│ │ │ │ ├── Microsoft.Data.OData.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.resources.dll
│ │ │ │ └── System.Spatial.resources.dll
│ │ │ ├── fr
│ │ │ │ ├── Microsoft.Data.Edm.resources.dll
│ │ │ │ ├── Microsoft.Data.OData.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.resources.dll
│ │ │ │ └── System.Spatial.resources.dll
│ │ │ ├── it
│ │ │ │ ├── Microsoft.Data.Edm.resources.dll
│ │ │ │ ├── Microsoft.Data.OData.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.resources.dll
│ │ │ │ └── System.Spatial.resources.dll
│ │ │ ├── ja
│ │ │ │ ├── Microsoft.Data.Edm.resources.dll
│ │ │ │ ├── Microsoft.Data.OData.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.resources.dll
│ │ │ │ └── System.Spatial.resources.dll
│ │ │ ├── ko
│ │ │ │ ├── Microsoft.Data.Edm.resources.dll
│ │ │ │ ├── Microsoft.Data.OData.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.resources.dll
│ │ │ │ └── System.Spatial.resources.dll
│ │ │ ├── migrate.exe
│ │ │ ├── ru
│ │ │ │ ├── Microsoft.Data.Edm.resources.dll
│ │ │ │ ├── Microsoft.Data.OData.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.resources.dll
│ │ │ │ └── System.Spatial.resources.dll
│ │ │ ├── zh-Hans
│ │ │ │ ├── Microsoft.Data.Edm.resources.dll
│ │ │ │ ├── Microsoft.Data.OData.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.resources.dll
│ │ │ │ └── System.Spatial.resources.dll
│ │ │ └── zh-Hant
│ │ │ │ ├── Microsoft.Data.Edm.resources.dll
│ │ │ │ ├── Microsoft.Data.OData.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.Client.resources.dll
│ │ │ │ ├── Microsoft.Data.Services.resources.dll
│ │ │ │ └── System.Spatial.resources.dll
│ │ └── robots.txt
│ ├── PSGallery.psd1
│ └── PSGallery.psm1
├── PackageManagementProviderResource
│ └── 1.0.3
│ │ ├── DSCResources
│ │ ├── MSFT_NugetPackage
│ │ │ ├── MSFT_NugetPackage.psm1
│ │ │ ├── MSFT_NugetPackage.schema.mfl
│ │ │ ├── MSFT_NugetPackage.schema.mof
│ │ │ └── MSFT_NugetPackage.strings.psd1
│ │ ├── MSFT_PSModule
│ │ │ ├── MSFT_PSModule.psm1
│ │ │ ├── MSFT_PSModule.schema.mfl
│ │ │ ├── MSFT_PSModule.schema.mof
│ │ │ └── MSFT_PSModule.strings.psd1
│ │ ├── MSFT_PackageManagement
│ │ │ ├── MSFT_PackageManagement.psm1
│ │ │ ├── MSFT_PackageManagement.schema.mfl
│ │ │ ├── MSFT_PackageManagement.schema.mof
│ │ │ └── MSFT_PackageManagement.strings.psd1
│ │ ├── MSFT_PackageManagementSource
│ │ │ ├── MSFT_PackageManagementSource.psm1
│ │ │ ├── MSFT_PackageManagementSource.schema.mfl
│ │ │ ├── MSFT_PackageManagementSource.schema.mof
│ │ │ └── MSFT_PackageManagementSource.strings.psd1
│ │ ├── OneGetHelper.psm1
│ │ └── OneGetHelper.strings.psd1
│ │ ├── Examples
│ │ ├── Sample_Install_Package.ps1
│ │ ├── Sample_Install_Package_Using_NuGet.ps1
│ │ ├── Sample_Install_Pester.ps1
│ │ ├── Sample_NuGet_InstallPackage.ps1
│ │ └── Sample_PSModule.ps1
│ │ ├── LICENSE.txt
│ │ ├── PSGetModuleInfo.xml
│ │ ├── PackageManagementProviderResource.psd1
│ │ ├── README.md
│ │ └── Test
│ │ ├── NugetPackage
│ │ ├── NugetPackage.Get.Tests.ps1
│ │ ├── NugetPackage.IntegrationTest.Tests.ps1
│ │ ├── NugetPackage.Set.Tests.ps1
│ │ └── NugetPackage.Test.Tests.ps1
│ │ ├── OneGetTestHelper.ps1
│ │ ├── PSModule
│ │ ├── PSModule.Get.Tests.ps1
│ │ ├── PSModule.IntegrationTest.Tests.ps1
│ │ └── PSModule.Set.and.Test.Tests.ps1
│ │ ├── PackageManagement
│ │ ├── PackageManagement.Get.Tests.ps1
│ │ ├── PackageManagement.Set.Tests.ps1
│ │ └── PackageManagement.Test.Tests.ps1
│ │ ├── PackageManagementSource
│ │ └── OneGetSource.Get.Set.Test.Tests.ps1
│ │ └── run-tests.ps1
├── SQLExpress
│ ├── DSCResources
│ │ ├── SQLExpressDatabase
│ │ │ ├── SQLExpressDatabase.psm1
│ │ │ └── SQLExpressDatabase.schema.mof
│ │ └── SQLExpressInstance
│ │ │ ├── SQLExpressInstance.psm1
│ │ │ └── SQLExpressInstance.schema.mof
│ └── SQLExpress.psd1
└── xWebAdministration
│ └── 1.9.0.0
│ ├── DSCResources
│ ├── Helper.psm1
│ ├── MSFT_xIIsHandler
│ │ ├── MSFT_xIisHandler.psm1
│ │ └── MSFT_xIisHandler.schema.mof
│ ├── MSFT_xIisFeatureDelegation
│ │ ├── MSFT_xIisFeatureDelegation.psm1
│ │ └── MSFT_xIisFeatureDelegation.schema.mof
│ ├── MSFT_xIisMimeTypeMapping
│ │ ├── MSFT_xIisMimeTypeMapping.psm1
│ │ └── MSFT_xIisMimeTypeMapping.schema.mof
│ ├── MSFT_xIisModule
│ │ ├── MSFT_xIisModule.psm1
│ │ ├── MSFT_xIisModule.schema.mof
│ │ └── xIisModuleDesigner.ps1
│ ├── MSFT_xSSLSettings
│ │ ├── MSFT_xSSLSettings.psm1
│ │ └── MSFT_xSSLSettings.schema.mof
│ ├── MSFT_xWebAppPool
│ │ ├── MSFT_xWebAppPool.psm1
│ │ └── MSFT_xWebAppPool.schema.mof
│ ├── MSFT_xWebAppPoolDefaults
│ │ ├── MSFT_xWebAppPoolDefaults.psm1
│ │ └── MSFT_xWebAppPoolDefaults.schema.mof
│ ├── MSFT_xWebApplication
│ │ ├── MSFT_xWebApplication.psm1
│ │ └── MSFT_xWebApplication.schema.mof
│ ├── MSFT_xWebConfigKeyValue
│ │ ├── MSFT_xWebConfigKeyValue.psm1
│ │ └── MSFT_xWebConfigKeyValue.schema.mof
│ ├── MSFT_xWebConnectionString
│ │ ├── MSFT_xWebConnectionString.psm1
│ │ └── MSFT_xWebConnectionString.schema.mof
│ ├── MSFT_xWebSiteDefaults
│ │ ├── MSFT_xWebSiteDefaults.psm1
│ │ └── MSFT_xWebSiteDefaults.schema.mof
│ ├── MSFT_xWebVirtualDirectory
│ │ ├── MSFT_xWebVirtualDirectory.psm1
│ │ └── MSFT_xWebVirtualDirectory.schema.mof
│ └── MSFT_xWebsite
│ │ ├── MSFT_xWebsite.psm1
│ │ └── MSFT_xWebsite.schema.mof
│ ├── Examples
│ ├── README.md
│ ├── Sample_xIisFeatureDelegation_AllowSome.ps1
│ ├── Sample_xIisHandler_Remove32Bit.ps1
│ ├── Sample_xIisMimeTypeMapping_RemoveVideo.ps1
│ ├── Sample_xIisServerDefaults.ps1
│ ├── Sample_xSSLSettings_RequireCert.ps1
│ ├── Sample_xWebsite_ConfigurationData.psd1
│ ├── Sample_xWebsite_NewWebsite.ps1
│ ├── Sample_xWebsite_NewWebsiteFromConfigurationData.ps1
│ ├── Sample_xWebsite_RemoveDefault.ps1
│ └── Sample_xWebsite_WithSSLFlags.ps1
│ ├── LICENSE
│ ├── PSGetModuleInfo.xml
│ ├── README.md
│ ├── Tests
│ ├── Integration
│ │ ├── MSFT_xIISFeatureDelegation.Integration.Tests.ps1
│ │ ├── MSFT_xIISFeatureDelegation.config.ps1
│ │ ├── MSFT_xIISHandler.Integration.Tests.ps1
│ │ ├── MSFT_xIISHandler.config.ps1
│ │ ├── MSFT_xIISMimeTypeMapping.Integration.Tests.ps1
│ │ ├── MSFT_xIISMimeTypeMapping.config.ps1
│ │ ├── MSFT_xWebAppPool.Integration.tests.ps1
│ │ ├── MSFT_xWebAppPool.config.ps1
│ │ ├── MSFT_xWebAppPoolDefaults.Integration.Tests.ps1
│ │ ├── MSFT_xWebAppPoolDefaults.config.ps1
│ │ ├── MSFT_xWebsite.Integration.Tests.ps1
│ │ ├── MSFT_xWebsite.config.ps1
│ │ ├── MSFT_xWebsiteDefaults.Integration.Tests.ps1
│ │ └── MSFT_xWebsiteDefaults.config.ps1
│ └── Unit
│ │ ├── MSFT_xIISFeatureDelegation.tests.ps1
│ │ ├── MSFT_xIISHandler.tests.ps1
│ │ ├── MSFT_xSSLSettings.Tests.ps1
│ │ ├── MSFT_xWebAppPool.Tests.ps1
│ │ ├── MSFT_xWebApplication.Tests.ps1
│ │ ├── MSFT_xWebVirtualDirectory.tests.ps1
│ │ └── MSFT_xWebsite.Tests.ps1
│ ├── appveyor.yml
│ └── xWebAdministration.psd1
└── README.md
/Configuration/GalleryAdminCredFile.clixml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Configuration/GalleryAdminCredFile.clixml
--------------------------------------------------------------------------------
/Configuration/GalleryUserCredFile.clixml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Configuration/GalleryUserCredFile.clixml
--------------------------------------------------------------------------------
/Configuration/PSPrivateGalleryEnvironment.psd1:
--------------------------------------------------------------------------------
1 | @{
2 | AllNodes = @(
3 | @{
4 | NodeName = 'localhost'
5 | Role = 'WebServer'
6 | PsDscAllowPlainTextPassword = $true
7 |
8 | UrlRewritePackagePath = 'C:\PSPrivateGallery\Installers\rewrite_amd64.msi'
9 | SqlExpressPackagePath = 'C:\PSPrivateGallery\Installers\SqlLocalDB_x64.msi'
10 |
11 | GalleryAdminCredFile = 'C:\PSPrivateGallery\Configuration\GalleryAdminCredFile.clixml'
12 | GallerySourcePath = 'C:\Program Files\WindowsPowerShell\Modules\PSGallery\GalleryContent\'
13 |
14 | WebsiteName = 'PSGallery'
15 | WebsitePath = 'C:\PSGallery'
16 | AppPoolName = 'PSGalleryAppPool'
17 | WebsitePort = 8080
18 |
19 | SqlInstanceName = 'PSGallery'
20 | SqlDatabaseName = 'PSGallery'
21 | SqlServerName = '(LocalDB)'
22 | }
23 | )
24 | }
--------------------------------------------------------------------------------
/Installers/SqlLocalDB_x64.msi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Installers/SqlLocalDB_x64.msi
--------------------------------------------------------------------------------
/Installers/rewrite_amd64.msi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Installers/rewrite_amd64.msi
--------------------------------------------------------------------------------
/LICENSE.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) Microsoft Corporation.
2 |
3 | MIT License
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/Modules/PSGallery/DSCResources/PSGalleryDatabase/PSGalleryDatabase.psd1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/DSCResources/PSGalleryDatabase/PSGalleryDatabase.psd1
--------------------------------------------------------------------------------
/Modules/PSGallery/DSCResources/PSGalleryDatabaseMigration/PSGalleryDatabaseMigration.schema.mof:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/DSCResources/PSGalleryDatabaseMigration/PSGalleryDatabaseMigration.schema.mof
--------------------------------------------------------------------------------
/Modules/PSGallery/DSCResources/PSGalleryWebServer/PSGalleryWebServer.psd1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/DSCResources/PSGalleryWebServer/PSGalleryWebServer.psd1
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/App_Data/Files/Content/Alert.md:
--------------------------------------------------------------------------------
1 |
This gallery is for demonstration purposes only.
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/Back.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/Back.gif
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/PgFirst.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/PgFirst.gif
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/PgLast.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/PgLast.gif
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/PgNext.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/PgNext.gif
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/PgPrev.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/PgPrev.gif
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/header_back.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/header_back.gif
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/plus.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Content/Images/plus.gif
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Default.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" MasterPageFile="Site.master" CodeBehind="Default.aspx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData._Default" %>
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/EntityTemplates/Default.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="Default.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.DefaultEntityTemplate" %>
2 |
3 |
4 |
5 |
6 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/EntityTemplates/Default_Edit.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="Default_Edit.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.Default_EditEntityTemplate" %>
2 |
3 | <%@ Reference Control="~/Areas/Admin/DynamicData/EntityTemplates/Default.ascx" %>
4 |
5 |
6 |
7 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/EntityTemplates/Default_Insert.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="Default_Insert.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.Default_InsertEntityTemplate" %>
2 |
3 | <%@ Reference Control="~/Areas/Admin/DynamicData/EntityTemplates/Default.ascx" %>
4 |
5 |
6 |
7 |
8 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Boolean.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="Boolean.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.BooleanField" %>
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Boolean_Edit.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="Boolean_Edit.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.Boolean_EditField" %>
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Children.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="Children.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.ChildrenField" %>
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Children_Insert.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="Children_Insert.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.Children_InsertField" %>
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/DateTime.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="DateTime.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.DateTimeField" %>
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/DateTime_Edit.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="DateTime_Edit.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.DateTime_EditField" %>
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Decimal_Edit.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="Decimal_Edit.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.Decimal_EditField" %>
2 |
3 |
4 |
5 |
6 |
8 |
9 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/EmailAddress.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="EmailAddress.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.EmailAddressField" %>
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Enumeration.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="Enumeration.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.EnumerationField" %>
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Enumeration_Edit.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="Enumeration_Edit.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.Enumeration_EditField" %>
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/ForeignKey.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="ForeignKey.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.ForeignKeyField" %>
2 |
3 |
6 |
7 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/ForeignKey_Edit.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="ForeignKey_Edit.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.ForeignKey_EditField" %>
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Integer_Edit.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="Integer_Edit.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.Integer_EditField" %>
2 |
3 |
4 |
5 |
6 |
8 |
9 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/ManyToMany.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="ManyToMany.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.ManyToManyField" %>
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/ManyToMany_Edit.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="ManyToMany_Edit.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.ManyToMany_EditField" %>
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/MultilineText_Edit.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="MultilineText_Edit.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.MultilineText_EditField" %>
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Text.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="Text.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.TextField" %>
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Text_Edit.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="Text_Edit.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.Text_EditField" %>
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/FieldTemplates/Url.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="Url.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.UrlField" %>
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Filters/Boolean.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="Boolean.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.BooleanFilter" %>
2 |
3 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Filters/Enumeration.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="Enumeration.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.EnumerationFilter" %>
2 |
3 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/Filters/ForeignKey.ascx:
--------------------------------------------------------------------------------
1 | <%@ Control Language="C#" CodeBehind="ForeignKey.ascx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.ForeignKeyFilter" %>
2 |
3 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/PageTemplates/Insert.aspx:
--------------------------------------------------------------------------------
1 | <%@ Page Language="C#" MasterPageFile="../Site.master" CodeBehind="Insert.aspx.cs" Inherits="NuGetGallery.Areas.Admin.DynamicData.Insert" %>
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
17 |
18 |
19 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/DynamicData/web.config:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/Views/Lucene/Index.cshtml:
--------------------------------------------------------------------------------
1 | @model NuGetGallery.Areas.Admin.Models.LuceneInfoModel
2 | @{
3 | ViewBag.Title = "Lucene Maintainance";
4 | TimeZoneInfo timeZoneInfo = TimeZoneInfo.FindSystemTimeZoneById("Pacific Standard Time");
5 | }
6 |
7 | Lucene Maintainance
8 |
9 | @if (Model.LastUpdated == null)
10 | {
11 | Lucene Index has not been built yet.
12 | }
13 | else
14 | {
15 |
16 | Lucene Index was last rebuilt:
17 | @Model.LastUpdated.Value.ToString("F") GMT
18 | @TimeZoneInfo.ConvertTime(Model.LastUpdated.Value, TimeZoneInfo.Utc, timeZoneInfo).ToString("F") Pacific
19 |
20 |
21 | There are @Model.DocumentCount documents in the index.
22 | The index consumes @Model.FormatIndexSize() of space and is stored in @Model.Directory (@Model.Location).
23 |
24 | }
25 |
26 | @using (Html.BeginForm(MVC.Admin.Lucene.Rebuild()))
27 | {
28 |
29 |
30 | NOTE: This will only affect the current instance!
31 |
32 | }
33 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Areas/Admin/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "~/Views/Shared/Layout.cshtml";
3 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Branding/Views/Errors/InternalError.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Page.Title = "Internal Server Error";
3 | Response.StatusCode = 500;
4 | }
5 |
6 |
7 | Sorry, an error occurred while processing your request.
8 |
9 |
10 |
11 |
Error: Oh no, we broke something!
12 |
You might be here because:
13 |
14 | There is an error on our server and the server is "givin' her all she's got, captain."
15 | The system is down, the system is down, the system is down.
16 | Our name is smalls.
17 |
18 |
19 |
20 | We have logged the error and we will look into it, and make sure it doesn’t happen again. However if you keep
21 | seeing this page please report the issue by sending a mail to
22 |
23 | cgadmin@microsoft.com
24 | .
25 |
26 |
27 |
Search For Something Else
28 |
32 |
33 |
34 | @section BottomScripts {
35 |
42 |
43 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Branding/Views/Errors/NotFound.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Page.Title = "Page Not Found";
3 | var errorPath = Request.QueryString["aspxerrorpath"];
4 |
5 | if (String.IsNullOrEmpty(errorPath))
6 | {
7 | errorPath = Request.RawUrl;
8 | }
9 |
10 | errorPath = Path.GetFileNameWithoutExtension(errorPath);
11 | Response.StatusCode = 404;
12 | }
13 |
14 |
15 |
404 : Page Not Found
16 |
You might be here because:
17 |
18 | The page you are looking for does not exist anymore.
19 | We moved the page that you are looking for, sorry!
20 | You know how to hack URLs and you're trying to find something.
21 | We just plain suck and messed something up.
22 |
23 |
24 |
Try Searching
25 |
26 |
30 |
31 |
32 |
Still Nothing?
33 |
41 |
42 |
43 | @section BottomScripts {
44 |
54 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Branding/Views/Packages/Download.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewBag.Tab = "Packages";
3 | }
4 |
5 | Where is the download link for this module?
6 |
7 | The short answer is, there is no download link because there is a faster way to download and install from the PowerShell prompt.
8 |
9 |
10 |
11 | Simply:
12 |
13 |
14 |
15 | Open PowerShell as administrator.
16 |
17 |
18 | Run command Install-Module command like following
19 |
20 |
21 | PS> Install-Module -Name <packageName> -version <version>
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Branding/Views/Packages/UploadPackage.cshtml:
--------------------------------------------------------------------------------
1 | @model SubmitPackageRequest
2 | @{
3 | ViewBag.Title = "Upload";
4 | ViewBag.Tab = "Upload";
5 | }
6 |
7 | Uploading a package
8 |
9 |
10 | You can upload any PowerShell module using Publish-Module command like following
11 | PS> Publish-Module -Name <moduleName> -NuGetApiKey <apiKey>
12 |
13 |
14 |
15 | View your profile to get your API key.
16 |
17 | Your package file will be uploaded and hosted on the @(Config.Current.Brand) server (@(Config.Current.SiteRoot)).
18 |
19 |
20 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Branding/Views/Pages/Contact.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewBag.Title = "Contact Us";
3 | }
4 |
5 |
6 | Contact Us
7 |
8 |
9 | Need help with this gallery? Let us know!
10 |
11 |
12 | Having problems using a specific package?
13 |
14 | If you're having trouble installing a specific package, try contacting the owner of that package first.
15 | You can reach them using the "Contact Owners" link on the package details page.
16 |
17 |
18 | Is a package violating a license or otherwise abusive?
19 |
20 | If you feel that a package is violating the license of software you own or is violating our terms of service,
21 | use the "Report Abuse" link on the package details page to report it directly to us.
22 |
23 |
24 | Need help with your this gallery account? Please feel free to
25 |
26 |
27 |
28 | @section BottomScripts {
29 |
36 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Branding/Views/Pages/Home.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewBag.Title = "Home";
3 | ViewBag.Tab = "Home";
4 | }
5 | @ViewBag.Content
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Branding/Views/Shared/LayoutFooter.cshtml:
--------------------------------------------------------------------------------
1 |
15 |
16 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Branding/Views/Shared/SiteMenu.cshtml:
--------------------------------------------------------------------------------
1 | @using System.Collections.Specialized
2 |
3 | @{
4 | var classes = new StringDictionary();
5 | if (ViewData.ContainsKey("Tab"))
6 | {
7 | classes[ViewBag.Tab] = "current";
8 | }
9 | }
10 | Home
11 | Get Started
12 | Modules
13 | Publish Module
14 | @if (StatisticsHelper.IsStatisticsPageAvailable)
15 | {
16 | Statistics
17 | }
18 | @if (Request.IsAuthenticated && User.IsInRole(Constants.AdminRoleName))
19 | {
20 | Admin
21 | }
22 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Branding/Views/Shared/UserDisplay.cshtml:
--------------------------------------------------------------------------------
1 |
2 | @if (!User.Identity.IsAuthenticated)
3 | {
4 | string returnUrl = ViewData.ContainsKey(Constants.ReturnUrlViewDataKey) ? (string)ViewData[Constants.ReturnUrlViewDataKey] : Request.RawUrl;
5 |
6 | Register |
7 | Sign in
8 |
9 | }
10 | else
11 | {
12 |
@(User.Identity.Name)
13 |
|
14 |
15 | Sign out
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Branding/Views/Users/Thanks.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewBag.Title = "Thanks";
3 | }
4 |
5 |
6 | Thank you for registering, @CurrentUser.Username!
7 |
8 |
9 | Now that you have an account for this gallery you might like to...
10 |
11 |
23 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Branding/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "~/Branding/views/Shared/Layout.cshtml";
3 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Images/YourPackage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Images/YourPackage.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Images/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Images/arrow.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Images/errorPage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Images/errorPage.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Images/headerbackground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Images/headerbackground.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Images/icons/nuget_32_mono_b.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Images/icons/nuget_32_mono_b.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Images/icons/nuget_32_mono_w.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Images/icons/nuget_32_mono_w.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Images/inputBackground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Images/inputBackground.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Images/packageDefaultIcon-50x50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Images/packageDefaultIcon-50x50.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Images/packageDefaultIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Images/packageDefaultIcon.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Images/packageOwnerActionIcons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Images/packageOwnerActionIcons.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Images/powershellgetArchitecture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Images/powershellgetArchitecture.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Images/required.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Images/required.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Images/searchButton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Images/searchButton.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Logos/ConfigGalleryLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Logos/ConfigGalleryLogo.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Logos/hero.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Logos/hero.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Logos/herowithlogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Logos/herowithlogo.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Logos/nugetLogoFooter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Logos/nugetLogoFooter.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Logos/nugetlogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Logos/nugetlogo.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/Logos/outercurve.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/Logos/outercurve.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/clippy.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/clippy.swf
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/font/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/font/FontAwesome.otf
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/font/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/font/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/font/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/font/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/font/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/font/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/images/animated-overlay.gif
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.accordion.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Accordion 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 {
12 | display: block;
13 | cursor: pointer;
14 | position: relative;
15 | margin-top: 2px;
16 | padding: .5em .5em .5em .7em;
17 | min-height: 0; /* support: IE7 */
18 | }
19 | .ui-accordion .ui-accordion-icons {
20 | padding-left: 2.2em;
21 | }
22 | .ui-accordion .ui-accordion-noicons {
23 | padding-left: .7em;
24 | }
25 | .ui-accordion .ui-accordion-icons .ui-accordion-icons {
26 | padding-left: 2.2em;
27 | }
28 | .ui-accordion .ui-accordion-header .ui-accordion-header-icon {
29 | position: absolute;
30 | left: .5em;
31 | top: 50%;
32 | margin-top: -8px;
33 | }
34 | .ui-accordion .ui-accordion-content {
35 | padding: 1em 2.2em;
36 | border-top: 0;
37 | overflow: auto;
38 | }
39 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.all.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI CSS Framework 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.autocomplete.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Autocomplete 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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;
14 | left: 0;
15 | cursor: default;
16 | }
17 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.base.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI CSS Framework 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.dialog.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Dialog 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 {
12 | position: absolute;
13 | top: 0;
14 | left: 0;
15 | padding: .2em;
16 | outline: 0;
17 | }
18 | .ui-dialog .ui-dialog-titlebar {
19 | padding: .4em 1em;
20 | position: relative;
21 | }
22 | .ui-dialog .ui-dialog-title {
23 | float: left;
24 | margin: .1em 0;
25 | white-space: nowrap;
26 | width: 90%;
27 | overflow: hidden;
28 | text-overflow: ellipsis;
29 | }
30 | .ui-dialog .ui-dialog-titlebar-close {
31 | position: absolute;
32 | right: .3em;
33 | top: 50%;
34 | width: 21px;
35 | margin: -10px 0 0 0;
36 | padding: 1px;
37 | height: 20px;
38 | }
39 | .ui-dialog .ui-dialog-content {
40 | position: relative;
41 | border: 0;
42 | padding: .5em 1em;
43 | background: none;
44 | overflow: auto;
45 | }
46 | .ui-dialog .ui-dialog-buttonpane {
47 | text-align: left;
48 | border-width: 1px 0 0 0;
49 | background-image: none;
50 | margin-top: .5em;
51 | padding: .3em 1em .5em .4em;
52 | }
53 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
54 | float: right;
55 | }
56 | .ui-dialog .ui-dialog-buttonpane button {
57 | margin: .5em .4em .5em 0;
58 | cursor: pointer;
59 | }
60 | .ui-dialog .ui-resizable-se {
61 | width: 12px;
62 | height: 12px;
63 | right: -5px;
64 | bottom: -5px;
65 | background-position: 16px 16px;
66 | }
67 | .ui-draggable .ui-dialog-titlebar {
68 | cursor: move;
69 | }
70 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.menu.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Menu 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 {
12 | list-style: none;
13 | padding: 2px;
14 | margin: 0;
15 | display: block;
16 | outline: none;
17 | }
18 | .ui-menu .ui-menu {
19 | margin-top: -3px;
20 | position: absolute;
21 | }
22 | .ui-menu .ui-menu-item {
23 | margin: 0;
24 | padding: 0;
25 | width: 100%;
26 | /* support: IE10, see #8844 */
27 | list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
28 | }
29 | .ui-menu .ui-menu-divider {
30 | margin: 5px -2px 5px -2px;
31 | height: 0;
32 | font-size: 0;
33 | line-height: 0;
34 | border-width: 1px 0 0 0;
35 | }
36 | .ui-menu .ui-menu-item a {
37 | text-decoration: none;
38 | display: block;
39 | padding: 2px .4em;
40 | line-height: 1.5;
41 | min-height: 0; /* support: IE7 */
42 | font-weight: normal;
43 | }
44 | .ui-menu .ui-menu-item a.ui-state-focus,
45 | .ui-menu .ui-menu-item a.ui-state-active {
46 | font-weight: normal;
47 | margin: -1px;
48 | }
49 |
50 | .ui-menu .ui-state-disabled {
51 | font-weight: normal;
52 | margin: .4em 0 .2em;
53 | line-height: 1.5;
54 | }
55 | .ui-menu .ui-state-disabled a {
56 | cursor: default;
57 | }
58 |
59 | /* icon support */
60 | .ui-menu-icons {
61 | position: relative;
62 | }
63 | .ui-menu-icons .ui-menu-item a {
64 | position: relative;
65 | padding-left: 2em;
66 | }
67 |
68 | /* left-aligned */
69 | .ui-menu .ui-icon {
70 | position: absolute;
71 | top: .2em;
72 | left: .2em;
73 | }
74 |
75 | /* right-aligned */
76 | .ui-menu .ui-menu-icon {
77 | position: static;
78 | float: right;
79 | }
80 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.progressbar.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Progressbar 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 {
12 | height: 2em;
13 | text-align: left;
14 | overflow: hidden;
15 | }
16 | .ui-progressbar .ui-progressbar-value {
17 | margin: -1px;
18 | height: 100%;
19 | }
20 | .ui-progressbar .ui-progressbar-overlay {
21 | background: url("images/animated-overlay.gif");
22 | height: 100%;
23 | filter: alpha(opacity=25);
24 | opacity: 0.25;
25 | }
26 | .ui-progressbar-indeterminate .ui-progressbar-value {
27 | background-image: none;
28 | }
29 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.resizable.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Resizable 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 {
12 | position: relative;
13 | }
14 | .ui-resizable-handle {
15 | position: absolute;
16 | font-size: 0.1px;
17 | display: block;
18 | }
19 | .ui-resizable-disabled .ui-resizable-handle,
20 | .ui-resizable-autohide .ui-resizable-handle {
21 | display: none;
22 | }
23 | .ui-resizable-n {
24 | cursor: n-resize;
25 | height: 7px;
26 | width: 100%;
27 | top: -5px;
28 | left: 0;
29 | }
30 | .ui-resizable-s {
31 | cursor: s-resize;
32 | height: 7px;
33 | width: 100%;
34 | bottom: -5px;
35 | left: 0;
36 | }
37 | .ui-resizable-e {
38 | cursor: e-resize;
39 | width: 7px;
40 | right: -5px;
41 | top: 0;
42 | height: 100%;
43 | }
44 | .ui-resizable-w {
45 | cursor: w-resize;
46 | width: 7px;
47 | left: -5px;
48 | top: 0;
49 | height: 100%;
50 | }
51 | .ui-resizable-se {
52 | cursor: se-resize;
53 | width: 12px;
54 | height: 12px;
55 | right: 1px;
56 | bottom: 1px;
57 | }
58 | .ui-resizable-sw {
59 | cursor: sw-resize;
60 | width: 9px;
61 | height: 9px;
62 | left: -5px;
63 | bottom: -5px;
64 | }
65 | .ui-resizable-nw {
66 | cursor: nw-resize;
67 | width: 9px;
68 | height: 9px;
69 | left: -5px;
70 | top: -5px;
71 | }
72 | .ui-resizable-ne {
73 | cursor: ne-resize;
74 | width: 9px;
75 | height: 9px;
76 | right: -5px;
77 | top: -5px;
78 | }
79 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.selectable.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Selectable 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 {
12 | position: absolute;
13 | z-index: 100;
14 | border: 1px dotted black;
15 | }
16 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.slider.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Slider 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 {
12 | position: relative;
13 | text-align: left;
14 | }
15 | .ui-slider .ui-slider-handle {
16 | position: absolute;
17 | z-index: 2;
18 | width: 1.2em;
19 | height: 1.2em;
20 | cursor: default;
21 | }
22 | .ui-slider .ui-slider-range {
23 | position: absolute;
24 | z-index: 1;
25 | font-size: .7em;
26 | display: block;
27 | border: 0;
28 | background-position: 0 0;
29 | }
30 |
31 | /* For IE8 - See #6727 */
32 | .ui-slider.ui-state-disabled .ui-slider-handle,
33 | .ui-slider.ui-state-disabled .ui-slider-range {
34 | filter: inherit;
35 | }
36 |
37 | .ui-slider-horizontal {
38 | height: .8em;
39 | }
40 | .ui-slider-horizontal .ui-slider-handle {
41 | top: -.3em;
42 | margin-left: -.6em;
43 | }
44 | .ui-slider-horizontal .ui-slider-range {
45 | top: 0;
46 | height: 100%;
47 | }
48 | .ui-slider-horizontal .ui-slider-range-min {
49 | left: 0;
50 | }
51 | .ui-slider-horizontal .ui-slider-range-max {
52 | right: 0;
53 | }
54 |
55 | .ui-slider-vertical {
56 | width: .8em;
57 | height: 100px;
58 | }
59 | .ui-slider-vertical .ui-slider-handle {
60 | left: -.3em;
61 | margin-left: 0;
62 | margin-bottom: -.6em;
63 | }
64 | .ui-slider-vertical .ui-slider-range {
65 | left: 0;
66 | width: 100%;
67 | }
68 | .ui-slider-vertical .ui-slider-range-min {
69 | bottom: 0;
70 | }
71 | .ui-slider-vertical .ui-slider-range-max {
72 | top: 0;
73 | }
74 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.spinner.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Spinner 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 {
12 | position: relative;
13 | display: inline-block;
14 | overflow: hidden;
15 | padding: 0;
16 | vertical-align: middle;
17 | }
18 | .ui-spinner-input {
19 | border: none;
20 | background: none;
21 | color: inherit;
22 | padding: 0;
23 | margin: .2em 0;
24 | vertical-align: middle;
25 | margin-left: .4em;
26 | margin-right: 22px;
27 | }
28 | .ui-spinner-button {
29 | width: 16px;
30 | height: 50%;
31 | font-size: .5em;
32 | padding: 0;
33 | margin: 0;
34 | text-align: center;
35 | position: absolute;
36 | cursor: default;
37 | display: block;
38 | overflow: hidden;
39 | right: 0;
40 | }
41 | /* more specificity required here to overide default borders */
42 | .ui-spinner a.ui-spinner-button {
43 | border-top: none;
44 | border-bottom: none;
45 | border-right: none;
46 | }
47 | /* vertical centre icon */
48 | .ui-spinner .ui-icon {
49 | position: absolute;
50 | margin-top: -8px;
51 | top: 50%;
52 | left: 0;
53 | }
54 | .ui-spinner-up {
55 | top: 0;
56 | }
57 | .ui-spinner-down {
58 | bottom: 0;
59 | }
60 |
61 | /* TR overrides */
62 | .ui-spinner .ui-icon-triangle-1-s {
63 | /* need to fix icons sprite */
64 | background-position: -65px -16px;
65 | }
66 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.tabs.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Tabs 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 {
12 | position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
13 | padding: .2em;
14 | }
15 | .ui-tabs .ui-tabs-nav {
16 | margin: 0;
17 | padding: .2em .2em 0;
18 | }
19 | .ui-tabs .ui-tabs-nav li {
20 | list-style: none;
21 | float: left;
22 | position: relative;
23 | top: 0;
24 | margin: 1px .2em 0 0;
25 | border-bottom-width: 0;
26 | padding: 0;
27 | white-space: nowrap;
28 | }
29 | .ui-tabs .ui-tabs-nav li a {
30 | float: left;
31 | padding: .5em 1em;
32 | text-decoration: none;
33 | }
34 | .ui-tabs .ui-tabs-nav li.ui-tabs-active {
35 | margin-bottom: -1px;
36 | padding-bottom: 1px;
37 | }
38 | .ui-tabs .ui-tabs-nav li.ui-tabs-active a,
39 | .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
40 | .ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
41 | cursor: text;
42 | }
43 | .ui-tabs .ui-tabs-nav li a, /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
44 | .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
45 | cursor: pointer;
46 | }
47 | .ui-tabs .ui-tabs-panel {
48 | display: block;
49 | border-width: 0;
50 | padding: 1em 1.4em;
51 | background: none;
52 | }
53 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/jquery.ui.tooltip.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Tooltip 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 | body .ui-tooltip {
18 | border-width: 2px;
19 | }
20 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/animated-overlay.gif
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.accordion.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin-top:2px;padding:.5em .5em .5em .7em;min-height:0}.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}
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.autocomplete.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-autocomplete{position:absolute;top:0;left:0;cursor:default}
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.core.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width: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;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.dialog.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:21px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0;background-image:none;margin-top:.5em;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:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.menu.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-menu{list-style:none;padding:2px;margin:0;display:block;outline:0}.ui-menu .ui-menu{margin-top:-3px;position:absolute}.ui-menu .ui-menu-item{margin:0;padding:0;width:100%;list-style-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}.ui-menu .ui-menu-divider{margin:5px -2px 5px -2px;height:0;font-size:0;line-height:0;border-width:1px 0 0}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:2px .4em;line-height:1.5;min-height:0;font-weight:400}.ui-menu .ui-menu-item a.ui-state-focus,.ui-menu .ui-menu-item a.ui-state-active{font-weight:400;margin:-1px}.ui-menu .ui-state-disabled{font-weight:400;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}
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.progressbar.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url(images/animated-overlay.gif);height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.resizable.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.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}
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.selectable.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted #000}
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.slider.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
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.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.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}
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.spinner.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:0;background:0;color:inherit;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:0;border-bottom:0;border-right:0}.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}
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.tabs.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-tabs{position:relative;padding:.2em}.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-width: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:0}
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Content/themes/base/minified/jquery.ui.tooltip.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
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}body .ui-tooltip{border-width:2px}
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/D3 LICENSE.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) 2013, Michael Bostock
2 | All rights reserved.
3 |
4 | Redistribution and use in source and binary forms, with or without
5 | modification, are permitted provided that the following conditions are met:
6 |
7 | * Redistributions of source code must retain the above copyright notice, this
8 | list of conditions and the following disclaimer.
9 |
10 | * Redistributions in binary form must reproduce the above copyright notice,
11 | this list of conditions and the following disclaimer in the documentation
12 | and/or other materials provided with the distribution.
13 |
14 | * The name Michael Bostock may not be used to endorse or promote products
15 | derived from this software without specific prior written permission.
16 |
17 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 | DISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT,
21 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
22 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
24 | OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
26 | EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/DataServices/V1Feed.svc:
--------------------------------------------------------------------------------
1 | <%@ ServiceHost Language="C#" Factory="System.Data.Services.DataServiceHostFactory, System.Data.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Service="NuGetGallery.V1Feed" %>
2 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/DataServices/V2CuratedFeed.svc:
--------------------------------------------------------------------------------
1 | <%@ ServiceHost Language="C#" Debug="true" Service="NuGetGallery.V2Feed" CodeBehind="V2CuratedFeed.svc.cs" %>
2 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/DataServices/V2Feed.svc:
--------------------------------------------------------------------------------
1 | <%@ ServiceHost Language="C#" Debug="true" Factory="System.Data.Services.DataServiceHostFactory, System.Data.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Service="NuGetGallery.V2Feed" CodeBehind="V2Feed.svc.cs" %>
2 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Public/clientaccesspolicy.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Public/configgallery.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Public/configgallery.ico
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/Public/favicon.ico
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Scripts/statsdimensions.js:
--------------------------------------------------------------------------------
1 |
2 | var groupbyNavigation = function () {
3 |
4 | $('.dimension-checkbox').click(function () {
5 |
6 | $('#dimension-form').submit();
7 | });
8 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Authentication/_SignIn.cshtml:
--------------------------------------------------------------------------------
1 | @model LogOnViewModel
2 |
3 | @using (Html.BeginForm("SignIn", "Authentication"))
4 | {
5 |
6 | Sign In Form
7 |
8 | @Html.AntiForgeryToken()
9 | @Html.Hidden("ReturnUrl", ViewData[Constants.ReturnUrlViewDataKey])
10 | @Html.Hidden("LinkingAccount", Model.External != null)
11 | @if (Model.External != null)
12 | {
13 | @Html.HiddenFor(m => m.External.ProviderAccountNoun)
14 | @Html.HiddenFor(m => m.External.AccountName)
15 | @Html.HiddenFor(m => m.External.FoundExistingUser)
16 | }
17 | @Html.ValidationSummaryFor("SignIn")
18 |
19 |
20 | @Html.LabelFor(m => m.SignIn.UserNameOrEmail)
21 | @Html.EditorFor(m => m.SignIn.UserNameOrEmail)
22 | @Html.ValidationMessageFor(m => m.SignIn.UserNameOrEmail)
23 |
24 |
25 |
26 | @Html.LabelFor(m => m.SignIn.Password)
27 | @Html.EditorFor(m => m.SignIn.Password)
28 | @Html.ValidationMessageFor(m => m.SignIn.Password)
29 |
30 |
31 |
32 | @Html.ActionLink("Lost your Password?", "ForgotPassword", "Users")
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 | Sign in with a NuGet.org account
41 |
42 |
43 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/CuratedPackages/CreateCuratedPackageForm.cshtml:
--------------------------------------------------------------------------------
1 | @model CreateCuratedPackageRequest
2 | @{
3 | Layout = "~/Views/Shared/TwoColumnLayout.cshtml";
4 | }
5 | @section SideColumn {
6 | Note: Packages might also be automatically included in your curated feed based on pre-defined rules. This form is to manually include a package in the curated feed, which will override any pre-defined rules.
7 | }
8 | Include Package in @ViewBag.CuratedFeedName
9 | @using (Html.BeginForm("CuratedPackages", CuratedPackagesController.ControllerName, new { curatedFeedName = ViewBag.CuratedFeedName }))
10 | {
11 |
12 | @Html.AntiForgeryToken()
13 | @Html.ValidationSummary(true)
14 | @Html.EditorForModel()
15 |
16 |
17 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Errors/CookieError.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Page.Title = "Invalid Request";
3 | Response.StatusCode = 400;
4 | }
5 |
6 |
7 |
Error: Invalid Request
8 |
We can't process your request because your browser sent an invalid request. This is likely because you have disabled Cookies in your browser.
9 | Please enable cookies in your browser settings and try your request again.
10 |
11 |
What now?
12 |
Return to the home page.
13 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Errors/InternalError.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Page.Title = "Internal Server Error";
3 | Response.StatusCode = 500;
4 | }
5 |
6 |
7 | Sorry, an error occurred while processing your request.
8 |
9 |
10 |
11 |
Error: Oh no, we broke something!
12 |
You might be here because:
13 |
14 | There is an error on our server and the server is "givin' her all she's got, captain."
15 | The system is down, the system is down, the system is down.
16 | Our name is smalls.
17 |
18 |
19 |
20 | We have logged the error and we will look into it, and make sure it doesn’t happen again. However if you keep
21 | seeing this page please file a bug in the
22 | @(Config.Current.Brand) issue tracker .
23 |
24 |
25 |
Search For Something Else
26 |
30 |
31 |
32 | @section BottomScripts {
33 |
40 |
41 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Errors/NotFound.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Page.Title = "Page Not Found";
3 | var errorPath = Request.QueryString["aspxerrorpath"];
4 |
5 | if (String.IsNullOrEmpty(errorPath))
6 | {
7 | errorPath = Request.RawUrl;
8 | }
9 |
10 | errorPath = Path.GetFileNameWithoutExtension(errorPath);
11 | Response.StatusCode = 404;
12 | }
13 |
14 |
15 |
404 : Page Not Found
16 |
You might be here because:
17 |
18 | The page you are looking for does not exist anymore.
19 | We moved the page that you are looking for, sorry!
20 | You know how to hack URLs and you're trying to find something.
21 | We just plain suck and messed something up.
22 |
23 |
24 |
Try Searching
25 |
26 |
30 |
31 |
32 |
Still Nothing?
33 |
36 |
37 |
38 | @section BottomScripts {
39 |
49 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Errors/ReadOnlyMode.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Page.Title = "Please try again later! (Read-only)";
3 | Response.StatusCode = 503;
4 | }
5 |
6 |
7 |
503 : Please try again later! (Read-only)
8 |
We can't process the request right now because the site is temporarily in read-only-mode. We
9 | understand your disappointment - but look on the bright side! This way the site is still
10 | available for package searching and downloading while we address temporary technical problems.
11 |
12 |
You can retry whatever you just tried to do in a few hours - hopefully we'll be fully operational by then!
13 | While you're waiting why not follow @@nuget on Twitter for status updates?
14 |
15 |
What now?
16 |
Return to the home page.
17 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Packages/ConfirmOwner.cshtml:
--------------------------------------------------------------------------------
1 | @model PackageOwnerConfirmationModel
2 | @{
3 | ViewBag.Title = "Confirm Ownership";
4 | }
5 |
6 | Confirm Ownership
7 |
8 | @switch(Model.Result)
9 | {
10 | case ConfirmOwnershipResult.Success:
11 |
12 | You are now an owner of the
13 | '@Model.PackageId ' package.
14 |
15 | break;
16 | case ConfirmOwnershipResult.AlreadyOwner:
17 |
18 | You are already an owner of the
19 | '@Model.PackageId ' package.
20 |
21 |
22 | If you manage multiple accounts, make sure you sign-in as the user who received the request before clicking the confirmation link.
23 |
24 | break;
25 | case ConfirmOwnershipResult.NotYourRequest:
26 | @* Note that we're not confirming that a request even exists for this user, it's just a string compare against the name in the URL *@
27 |
28 | This request link is for the user '@Model.Username', if you wish to accept it, please sign in as that user and click the link again.
29 |
30 | break;
31 | default:
32 |
33 | Could not confirm package ownership for '@Model.PackageId'.
34 |
35 |
36 | Make sure you clicked on the confirmation URL in the email we sent.
37 | It’s also possible that the existing owner revoked the
38 | request to add you as an owner.
39 |
40 | break;
41 | }
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Packages/ContactOwners.cshtml:
--------------------------------------------------------------------------------
1 | @model ContactOwnersViewModel
2 | @{
3 | ViewBag.Tab = "Packages";
4 | var owners = Model.Owners.Flatten(@@item.Username );
5 | }
6 |
7 | Contact the Owners of "@Model.PackageId"
8 | @if (Model.Owners.Any())
9 | {
10 |
11 | By submitting this form, you agree to disclose your email address
12 | to the package owners listed below so they can reply to you.
13 |
14 | using (Html.BeginForm())
15 | {
16 |
17 | Contact Owners
18 | @Html.AntiForgeryToken()
19 |
20 | To
21 |
22 |
23 |
24 | @Html.LabelFor(m => m.Message)
25 | @Html.TextAreaFor(m => m.Message, 10, 50, null)
26 | @Html.ValidationMessageFor(m => m.Message)
27 |
28 |
29 | @Html.CheckBoxFor(m => m.CopySender)
30 | @Html.LabelFor(m => m.CopySender, new { @class = "checkbox" })
31 |
32 |
33 |
34 |
35 | }
36 | }
37 | else
38 | {
39 |
40 | Sorry, the owners of this package do not allow contacting them through this form.
41 | Try visiting the project home page for "@Model.PackageId" in order to contact the package owner.
42 |
43 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Packages/Download.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewBag.Tab = "Packages";
3 | }
4 |
5 | Where is the download link for this package?
6 |
7 | The short answer is, there is no download link because NuGet provides
8 | a faster better way to incorporate a library into your project.
9 |
10 |
11 |
12 | Simply:
13 |
14 |
23 |
24 | Why NuGet?
25 |
26 | Typically, when you download a zip file that contains an assembly, you have to:
27 |
28 |
29 |
30 | “Unblock” the package to mark the downloaded package as safe
31 | Unzip the package contents (assemblies, images, css files, etc.) into a location in the solution
32 | Add an assembly reference to the project
33 | Update the web.config file with the correct settings (which you probably have to search for if they’re not included in the package somehow.)
34 |
35 |
36 |
37 | NuGet does all this for you! For a brief overview of what NuGet is,
38 | see NuGet overview .
39 |
40 |
41 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Packages/UnverifiablePackage.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "~/Errors/ErrorLayout.cshtml";
3 | ViewBag.Tab = "Uh-oh!";
4 | }
5 |
6 | Upload Package - Something went wrong!
7 |
8 | Something has gone wrong and the file you just uploaded cannot be processed.
9 | You can try to recover by clicking 'Continue',
10 | which will allow you to upload a new package.
11 |
12 | If this error persists and prevents you from uploading a package, please contact the site owners.
13 |
14 | @using (Html.BeginForm())
15 | {
16 |
17 | Cancel Submit Package
18 | @Html.AntiForgeryToken()
19 | Continue
20 |
21 | }
22 |
23 | @section BottomScripts {
24 |
35 | }
36 |
37 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Packages/_PackageDependencies.cshtml:
--------------------------------------------------------------------------------
1 | @model DependencySetsViewModel
2 | @if (Model.DependencySets.Any())
3 | {
4 |
5 | @foreach (var dependencySet in Model.DependencySets)
6 | {
7 |
8 | @if (!Model.OnlyHasAllFrameworks)
9 | {
10 | @dependencySet.Key
11 | }
12 |
13 | @foreach (var dependency in dependencySet.Value)
14 | {
15 |
16 | @if (dependency == null)
17 | {
18 | @:No dependencies.
19 | }
20 | else
21 | {
22 | @dependency.Id
23 | @dependency.VersionSpec
24 | }
25 |
26 | }
27 |
28 |
29 | }
30 |
31 | }
32 | else
33 | {
34 | This package has no dependencies.
35 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Pages/Home.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewBag.Title = "Home";
3 | ViewBag.Tab = "Home";
4 | }
5 | @ViewBag.Content
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Pages/Privacy.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewBag.Title = "Privacy Policy";
3 | }
4 |
5 | @ViewBag.Content
6 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Pages/Terms.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewBag.Title = "Terms and Conditions";
3 | }
4 |
5 | @ViewBag.Content
6 |
7 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Shared/EditorTemplates/Object.cshtml:
--------------------------------------------------------------------------------
1 | @if (ViewData.TemplateInfo.TemplateDepth > 1)
2 | {
3 | @ViewData.ModelMetadata.SimpleDisplayText
4 | }
5 | else
6 | {
7 | foreach (var prop in ViewData.ModelMetadata.Properties.Where(pm => pm.ShowForEdit && !ViewData.TemplateInfo.Visited(pm)))
8 | {
9 | if (prop.HideSurroundingHtml)
10 | {
11 | @Html.Editor(prop.PropertyName)
12 | }
13 | else
14 | {
15 | var className = String.Empty;
16 | if (ViewData.ModelState[prop.PropertyName] != null && ViewData.ModelState[prop.PropertyName].Errors != null && ViewData.ModelState[prop.PropertyName].Errors.Count > 0)
17 | {
18 | className = "invalid";
19 | }
20 |
36 | }
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Shared/LayoutFooter.cshtml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Contact Us
4 | Got questions about NuGet or the NuGet Gallery?
5 |
6 |
7 | Overview
8 | NuGet is a Visual Studio extension that makes it easy to add, remove, and update libraries and...
9 |
10 |
11 | Install
12 | NuGet can be installed and updated using the Visual Studio Extension Manager. To check if your copy...
13 |
14 |
15 | Videos
16 | Watch screencasts and presentations about anything and everything NuGet.
17 |
18 |
19 | FAQ
20 | Read the Frequently Asked Questions about NuGet and see if your question made the list.
21 |
22 |
23 |
24 |
25 |
26 | © @DateTime.UtcNow.Year Outercurve Foundation -
27 | Terms of Use -
28 | Privacy Policy
29 |
30 |
31 | Uses Font Awesome by Dave Gandy
32 |
33 | @ViewHelpers.ReleaseTag()
34 |
35 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Shared/SiteMenu.cshtml:
--------------------------------------------------------------------------------
1 | @using System.Collections.Specialized
2 |
3 | @{
4 | var classes = new StringDictionary();
5 | if (ViewData.ContainsKey("Tab"))
6 | {
7 | classes[ViewBag.Tab] = "current";
8 | }
9 | }
10 | Home
11 | Packages
12 | Upload Package
13 | @if (StatisticsHelper.IsStatisticsPageAvailable)
14 | {
15 | Statistics
16 | }
17 | @if (Request.IsAuthenticated && User.IsInRole(Constants.AdminRoleName))
18 | {
19 | Admin
20 | }
21 | Documentation
22 | Blog
23 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Shared/Title.cshtml:
--------------------------------------------------------------------------------
1 | @(Config.Current.Brand)
2 | @(String.IsNullOrWhiteSpace(ViewBag.Title) ? "" : "| " + ViewBag.Title)
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Shared/TwoColumnLayout.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "Layout.cshtml";
3 | }
4 |
5 | @section OpenGraph {
6 | @RenderSection("OpenGraph", required: false)
7 | }
8 |
9 |
10 | @RenderSection("SideColumn")
11 |
12 |
13 | @RenderBody()
14 |
15 |
16 |
17 |
18 | @section BottomScripts {
19 | @RenderSection("BottomScripts", required: false)
20 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Shared/UserDisplay.cshtml:
--------------------------------------------------------------------------------
1 |
2 | @if (!User.Identity.IsAuthenticated)
3 | {
4 | string returnUrl = ViewData.ContainsKey(Constants.ReturnUrlViewDataKey) ? (string)ViewData[Constants.ReturnUrlViewDataKey] : Request.RawUrl;
5 |
6 | Register / Sign in
7 |
8 | }
9 | else
10 | {
11 |
@(User.Identity.Name)
12 |
/
13 |
14 | Sign out
15 |
16 | }
17 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Statistics/PackageDownloadsByVersion.cshtml:
--------------------------------------------------------------------------------
1 | @model StatisticsPackagesViewModel
2 | @{
3 | ViewBag.Title = "Package Downloads for " + Model.PackageId;
4 | ViewBag.Tab = "Statistics";
5 | }
6 |
7 | Package Downloads for @Model.PackageId (Over the Last 6 Weeks)
8 | @if (Model.IsReportAvailable)
9 | {
10 | @Html.Partial("_PivotTable", Model.Report)
11 |
12 |
13 |
14 | @Html.Partial("_LastUpdated", Model)
15 | }
16 | else
17 | {
18 |
19 | Download statistics are not currently available for this package, please check back later.
20 |
21 | }
22 |
23 | @section BottomScripts
24 | {
25 | @if (Model.UseD3)
26 | {
27 | @Scripts.Render("~/Scripts/d3.v3.min.js")
28 | }
29 | @Scripts.Render("~/Scripts/statsdimensions.js")
30 | @Scripts.Render("~/Scripts/perpackagestatsgraphs.js")
31 |
37 | }
38 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Statistics/PackageDownloadsDetail.cshtml:
--------------------------------------------------------------------------------
1 | @model StatisticsPackagesViewModel
2 | @{
3 | ViewBag.Title = "Package Downloads for " + Model.PackageId + "/" + Model.PackageVersion;
4 | ViewBag.Tab = "Statistics";
5 | }
6 |
7 |
8 | @if (Model.IsReportAvailable)
9 | {
10 | @Html.Partial("_PivotTable", Model.Report)
11 |
12 |
13 |
14 | @Html.Partial("_LastUpdated", Model)
15 | }
16 | else
17 | {
18 |
19 | Download statistics are not currently available for this package, please check back later.
20 |
21 | }
22 |
23 | @section BottomScripts
24 | {
25 | @if (Model.UseD3)
26 | {
27 | @Scripts.Render("~/Scripts/d3.v3.min.js")
28 | }
29 | @Scripts.Render("~/Scripts/statsdimensions.js")
30 | @Scripts.Render("~/Scripts/perpackagestatsgraphs.js")
31 |
37 | }
38 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Statistics/PackageVersions.cshtml:
--------------------------------------------------------------------------------
1 | @model StatisticsPackagesViewModel
2 | @{
3 | ViewBag.Title = "Package Version Download Statistics";
4 | ViewBag.Tab = "Statistics";
5 | }
6 |
7 | Most Downloaded Package Versions (Top 500 Over the Last 6 Weeks)
8 |
32 | @Html.Partial("_LastUpdated", Model)
33 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Statistics/Packages.cshtml:
--------------------------------------------------------------------------------
1 | @model StatisticsPackagesViewModel
2 | @{
3 | ViewBag.Title = "Package Download Statistics";
4 | ViewBag.Tab = "Statistics";
5 | }
6 |
7 |
8 |
Most Downloaded Packages (Top 100 Over the Last 6 Weeks)
9 |
10 |
11 |
12 | Package Downloads
13 |
14 |
15 |
16 | @{
17 | var index = 0;
18 |
19 | foreach (var item in Model.DownloadPackagesAll)
20 | {
21 | index++;
22 |
23 |
24 | @index
25 | @item.PackageId
26 | @Model.DisplayDownloads(item.Downloads)
27 |
28 | }
29 | }
30 |
31 |
32 | @Html.Partial("_LastUpdated", Model)
33 |
34 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Statistics/_LastUpdated.cshtml:
--------------------------------------------------------------------------------
1 | @model StatisticsPackagesViewModel
2 | @if(Model.LastUpdatedUtc != null) {
3 |
4 | Statistics last updated at @Model.LastUpdatedUtc.Value.ToNuGetShortDateTimeString() UTC.
5 |
6 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Users/Confirm.cshtml:
--------------------------------------------------------------------------------
1 | @model ConfirmationViewModel
2 |
3 | Confirm Registration
4 |
5 | @if (Model.SuccessfulConfirmation)
6 | {
7 |
8 | Account confirmed! Your email address has been verified.
9 |
10 |
11 | You may now upload packages and make your mark in
12 | the community.
13 |
14 | }
15 | else
16 | {
17 | if (Model.WrongUsername)
18 | {
19 |
20 | You cannot confirm a different user's email address.
21 |
22 |
23 | Please check that you used the link from the right confirmation email, and are logged in as the right user.
24 |
25 |
26 | Resend confirmation email.
27 |
28 | }
29 | else if (Model.DuplicateEmailAddress)
30 | {
31 |
32 | Your email address is confirmed as belonging to another user account (or your 'old' account).
33 |
34 |
35 | You can change your email address to something else, or perhaps reuse the old account registered with this email address.
36 |
37 | }
38 | else
39 | {
40 |
41 | We could not confirm your email address. The token was invalid or expired.
42 |
43 |
44 | Please check that you used the link from the confirmation email we sent.
45 |
46 | }
47 |
48 | Resend confirmation email.
49 |
50 | }
51 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Users/ConfirmationRequired.cshtml:
--------------------------------------------------------------------------------
1 | @model ConfirmationViewModel
2 | @{
3 | ViewBag.Title = "Confirm Your Account";
4 | }
5 |
6 | @if (Model.SentEmail)
7 | {
8 | Confirmation Email Sent!
9 | }
10 | else
11 | {
12 | if (TempData.ContainsKey("ConfirmationRequiredMessage"))
13 | {
14 | @((string)TempData["ConfirmationRequiredMessage"])
15 | }
16 |
17 | Confirm Your Account
18 |
19 |
20 | using (Html.BeginForm())
21 | {
22 |
23 | Verify Email Address
24 | @Html.AntiForgeryToken()
25 |
26 |
27 | Click the button to send confirmation email.
28 |
29 |
30 |
31 | to @(Model.UnconfirmedEmailAddress) @Html.ActionLink("(change)", "Edit", "Users")
32 |
33 |
34 |
35 | }
36 | }
37 |
38 | Problems with your confirmation email?
39 |
40 |
41 | Please check your spam folder if you did not receive the confirmation email.
42 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Users/ForgotPassword.cshtml:
--------------------------------------------------------------------------------
1 | @model ForgotPasswordViewModel
2 | @{
3 | ViewBag.Title = "Forgot Password";
4 | }
5 |
6 | Forgot Password
7 |
8 |
9 | We are sorry to hear you forgot your NuGet.org account password. Enter your email below and we will
10 | send instructions to reset your password.
11 |
12 |
13 | @using (Html.BeginForm())
14 | {
15 |
16 | Register Form
17 |
18 | @Html.AntiForgeryToken()
19 | @Html.ValidationSummary(true)
20 |
21 | @Html.EditorForModel()
22 |
23 |
24 |
25 |
26 | Cancel
27 |
28 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Users/PasswordChanged.cshtml:
--------------------------------------------------------------------------------
1 | Password changed!
2 |
3 | @if(Request.IsAuthenticated) {
4 | Your NuGet.org account password has been set and can now be used to sign in!
5 | } else {
6 |
7 | Don't forget to use your new password the next time you
8 | sign in .
9 |
10 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Users/PasswordSent.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewBag.Title = "Password Reset";
3 | }
4 |
5 |
6 | Password Reset Sent
7 |
8 |
9 |
10 | We've sent an email
11 | @if (!String.IsNullOrEmpty(ViewBag.Email))
12 | {
13 | @:to @ViewBag.Email
14 | }
15 | else
16 | {
17 | @:to you
18 | }
19 | containing a temporary url that will allow you to reset your NuGet.org account password for
20 | the next @ViewBag.Expiration hours.
21 |
22 |
23 | Please check your spam folder if you don't receive the email within a
24 | few minutes.
25 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Users/ResetPassword.cshtml:
--------------------------------------------------------------------------------
1 | @model PasswordResetViewModel
2 | @{
3 | ViewBag.Title = ViewBag.ForgotPassword ? "Reset Password" : "Set Password";
4 | }
5 |
6 | @if(ViewBag.ForgotPassword) {
7 | Forgot Password
8 |
9 |
10 | We are sorry to hear you forgot your NuGet.org account password. Enter your email below and we will
11 | send instructions to reset your password.
12 |
13 | } else {
14 | Set Password
15 |
16 |
17 | You can set a NuGet.org account password using the form below.
18 |
19 | }
20 |
21 | @using (Html.BeginForm())
22 | {
23 |
24 | @(ViewBag.ForgotPassword ? "Reset Password" : "Set Password")
25 |
26 | @Html.AntiForgeryToken()
27 | @Html.ValidationSummary(true)
28 |
29 | @Html.EditorForModel()
30 |
31 |
32 |
33 |
34 |
35 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/Users/Thanks.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | ViewBag.Title = "Thanks";
3 | }
4 |
5 |
6 | Thank you for registering, @CurrentUser.Username!
7 |
8 |
9 | Now that you have a NuGet.org account you might like to...
10 |
11 |
29 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "~/views/Shared/Layout.cshtml";
3 | }
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Web.Debug.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
17 |
18 |
29 |
30 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/Web.Release.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
17 |
18 |
19 |
30 |
31 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/api/Web.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/AnglicanGeek.MarkdownMailer.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/AnglicanGeek.MarkdownMailer.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Antlr3.Runtime.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Antlr3.Runtime.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/DynamicData.EFCodeFirstProvider.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/DynamicData.EFCodeFirstProvider.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Elmah.Contrib.Mvc.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Elmah.Contrib.Mvc.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Elmah.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Elmah.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/EntityFramework.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/EntityFramework.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Glimpse.Ado.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Glimpse.Ado.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Glimpse.AspNet.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Glimpse.AspNet.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Glimpse.Core.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Glimpse.Core.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Glimpse.EF43.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Glimpse.EF43.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Glimpse.Mvc4.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Glimpse.Mvc4.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/ICSharpCode.SharpZipLib.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/ICSharpCode.SharpZipLib.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Lucene.Net.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Lucene.Net.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Lucene.Net.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Lucene.Net.pdb
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/MarkdownSharp.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/MarkdownSharp.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/MarkdownSharp.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/MarkdownSharp.pdb
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.ApplicationServer.Caching.Client.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.ApplicationServer.Caching.Client.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.ApplicationServer.Caching.Core.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.ApplicationServer.Caching.Core.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.AspNet.Identity.Core.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.AspNet.Identity.Core.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Edm.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Edm.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.Data.OData.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.Data.OData.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Services.Client.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Services.Client.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Services.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.Data.Services.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Host.SystemWeb.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Host.SystemWeb.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.Cookies.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.Cookies.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.MicrosoftAccount.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.MicrosoftAccount.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.Security.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.Owin.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.RMDTL.Test.AIReliabilityModel.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.RMDTL.Test.AIReliabilityModel.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.RMDTL.Test.AIReliabilityModel.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.RMDTL.Test.AIReliabilityModel.pdb
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.Web.DistributedCache.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.Web.DistributedCache.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.Web.Helpers.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.Web.Helpers.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.Web.Infrastructure.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.Web.Infrastructure.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.Web.XmlTransform.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.Web.XmlTransform.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Configuration.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Configuration.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Diagnostics.StorageUtility.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Diagnostics.StorageUtility.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Diagnostics.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Diagnostics.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.ServiceRuntime.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.ServiceRuntime.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Storage.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Storage.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Storage.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsAzure.Storage.pdb
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsFabric.Common.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsFabric.Common.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsFabric.Data.Common.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Microsoft.WindowsFabric.Data.Common.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/MvcHaack.Ajax.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/MvcHaack.Ajax.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Newtonsoft.Json.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Newtonsoft.Json.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Ninject.Web.Common.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Ninject.Web.Common.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Ninject.Web.Common.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Ninject.Web.Common.pdb
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Ninject.Web.Mvc.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Ninject.Web.Mvc.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Ninject.Web.Mvc.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Ninject.Web.Mvc.pdb
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Ninject.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Ninject.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Ninject.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Ninject.pdb
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/NuGet.Core.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/NuGet.Core.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/NuGetGallery.Core.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/NuGetGallery.Core.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/NuGetGallery.Core.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/NuGetGallery.Core.pdb
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/NuGetGallery.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/NuGetGallery.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/NuGetGallery.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/NuGetGallery.pdb
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/ODataNullPropagationVisitor.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/ODataNullPropagationVisitor.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Owin.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Owin.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/PoliteCaptcha.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/PoliteCaptcha.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/QueryInterceptor.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/QueryInterceptor.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Recaptcha.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Recaptcha.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/Recaptcha.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/Recaptcha.pdb
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/RouteMagic.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/RouteMagic.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/System.Spatial.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/System.Spatial.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/System.Web.Helpers.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/System.Web.Helpers.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/System.Web.Mvc.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/System.Web.Mvc.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/System.Web.Optimization.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/System.Web.Optimization.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/System.Web.Razor.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/System.Web.Razor.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.Deployment.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.Deployment.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.Razor.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.Razor.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/System.Web.WebPages.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/WebActivator.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/WebActivator.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/WebBackgrounder.EntityFramework.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/WebBackgrounder.EntityFramework.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/WebBackgrounder.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/WebBackgrounder.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/WebGrease.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/WebGrease.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/de/Microsoft.Data.Edm.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/de/Microsoft.Data.Edm.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/de/Microsoft.Data.OData.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/de/Microsoft.Data.OData.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/de/Microsoft.Data.Services.Client.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/de/Microsoft.Data.Services.Client.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/de/Microsoft.Data.Services.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/de/Microsoft.Data.Services.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/de/System.Spatial.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/de/System.Spatial.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/es/Microsoft.Data.Edm.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/es/Microsoft.Data.Edm.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/es/Microsoft.Data.OData.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/es/Microsoft.Data.OData.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/es/Microsoft.Data.Services.Client.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/es/Microsoft.Data.Services.Client.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/es/Microsoft.Data.Services.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/es/Microsoft.Data.Services.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/es/System.Spatial.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/es/System.Spatial.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/fr/Microsoft.Data.Edm.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/fr/Microsoft.Data.Edm.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/fr/Microsoft.Data.OData.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/fr/Microsoft.Data.OData.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/fr/Microsoft.Data.Services.Client.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/fr/Microsoft.Data.Services.Client.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/fr/Microsoft.Data.Services.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/fr/Microsoft.Data.Services.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/fr/System.Spatial.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/fr/System.Spatial.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/it/Microsoft.Data.Edm.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/it/Microsoft.Data.Edm.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/it/Microsoft.Data.OData.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/it/Microsoft.Data.OData.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/it/Microsoft.Data.Services.Client.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/it/Microsoft.Data.Services.Client.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/it/Microsoft.Data.Services.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/it/Microsoft.Data.Services.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/it/System.Spatial.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/it/System.Spatial.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/ja/Microsoft.Data.Edm.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/ja/Microsoft.Data.Edm.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/ja/Microsoft.Data.OData.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/ja/Microsoft.Data.OData.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/ja/Microsoft.Data.Services.Client.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/ja/Microsoft.Data.Services.Client.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/ja/Microsoft.Data.Services.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/ja/Microsoft.Data.Services.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/ja/System.Spatial.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/ja/System.Spatial.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/ko/Microsoft.Data.Edm.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/ko/Microsoft.Data.Edm.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/ko/Microsoft.Data.OData.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/ko/Microsoft.Data.OData.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/ko/Microsoft.Data.Services.Client.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/ko/Microsoft.Data.Services.Client.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/ko/Microsoft.Data.Services.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/ko/Microsoft.Data.Services.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/ko/System.Spatial.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/ko/System.Spatial.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/migrate.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/migrate.exe
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/ru/Microsoft.Data.Edm.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/ru/Microsoft.Data.Edm.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/ru/Microsoft.Data.OData.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/ru/Microsoft.Data.OData.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/ru/Microsoft.Data.Services.Client.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/ru/Microsoft.Data.Services.Client.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/ru/Microsoft.Data.Services.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/ru/Microsoft.Data.Services.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/ru/System.Spatial.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/ru/System.Spatial.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/zh-Hans/Microsoft.Data.Edm.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/zh-Hans/Microsoft.Data.Edm.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/zh-Hans/Microsoft.Data.OData.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/zh-Hans/Microsoft.Data.OData.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/zh-Hans/Microsoft.Data.Services.Client.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/zh-Hans/Microsoft.Data.Services.Client.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/zh-Hans/Microsoft.Data.Services.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/zh-Hans/Microsoft.Data.Services.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/zh-Hans/System.Spatial.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/zh-Hans/System.Spatial.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/zh-Hant/Microsoft.Data.Edm.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/zh-Hant/Microsoft.Data.Edm.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/zh-Hant/Microsoft.Data.OData.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/zh-Hant/Microsoft.Data.OData.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/zh-Hant/Microsoft.Data.Services.Client.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/zh-Hant/Microsoft.Data.Services.Client.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/zh-Hant/Microsoft.Data.Services.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/zh-Hant/Microsoft.Data.Services.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/bin/zh-Hant/System.Spatial.resources.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/GalleryContent/bin/zh-Hant/System.Spatial.resources.dll
--------------------------------------------------------------------------------
/Modules/PSGallery/GalleryContent/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow: /packages/*/*/Contents$
3 | Disallow: /packages/*/*/contents$
4 | Disallow: /Packages/*/*/Contents$
5 | Disallow: /Packages/*/*/contents$
--------------------------------------------------------------------------------
/Modules/PSGallery/PSGallery.psd1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PSGallery/PSGallery.psd1
--------------------------------------------------------------------------------
/Modules/PackageManagementProviderResource/1.0.3/DSCResources/MSFT_NugetPackage/MSFT_NugetPackage.psm1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PackageManagementProviderResource/1.0.3/DSCResources/MSFT_NugetPackage/MSFT_NugetPackage.psm1
--------------------------------------------------------------------------------
/Modules/PackageManagementProviderResource/1.0.3/DSCResources/MSFT_NugetPackage/MSFT_NugetPackage.schema.mfl:
--------------------------------------------------------------------------------
1 | #pragma namespace("\\\\.\\root\\default")
2 | instance of __namespace{ name="MS_409";};
3 | #pragma namespace("\\\\.\\root\\default\\MS_409")
4 |
5 | [AMENDMENT, LOCALE("MS_409")]
6 | class MSFT_NugetPackage : OMI_BaseResource
7 | {
8 | [Key,Description("Name of the package.\n") : Amended] String Name;
9 | [Description("The destination path of the package.\n") : Amended] String DestinationPath;
10 | [Description("Whether the package to be installed or uninstalled.\nPresent {default} \nAbsent \n") : Amended] String Ensure;
11 | [Description("Whether the package is trusted or untrusted.\nTrusted {default} \nUntrusted \n") : Amended] String InstallationPolicy;
12 | [Description("The required version of the package.\n") : Amended] String RequiredVersion;
13 | [Description("The maximum version of the package.\n") : Amended] String MaximumVersion;
14 | [Description("The minimum version of the package.\n") : Amended] String MinimumVersion;
15 | [Description("The Uri or name of the package source.\n") : Amended] String Source;
16 | [Description("The credential used to access repository of package source.\n") : Amended] String SourceCredential;
17 | [Description("The description of the package.\n") : Amended] string Description;
18 | [Description("The version of the installed package.\n") : Amended] String InstalledVersion;
19 | [Description("The identity of the installed package\n") : Amended] String SoftwareIdentity;
20 | };
21 |
--------------------------------------------------------------------------------
/Modules/PackageManagementProviderResource/1.0.3/DSCResources/MSFT_NugetPackage/MSFT_NugetPackage.schema.mof:
--------------------------------------------------------------------------------
1 |
2 | [ClassVersion("1.0.0.0"),FriendlyName("NugetPackage")]
3 | class MSFT_NugetPackage : OMI_BaseResource
4 | {
5 | [Key] String Name;
6 | [Required] String DestinationPath;
7 | [Write,ValueMap{"Present", "Absent"},Values{"Present", "Absent"}] String Ensure;
8 | [Write,ValueMap{"Trusted", "Untrusted"},Values{"Trusted", "Untrusted"}] String InstallationPolicy;
9 | [Write] String RequiredVersion;
10 | [Write] String MaximumVersion;
11 | [Write] String MinimumVersion;
12 | [Write] String Source;
13 | [Write,EmbeddedInstance("MSFT_Credential")] String SourceCredential;
14 | [Read] string Description;
15 | [Read] String InstalledVersion;
16 | [Read] String SoftwareIdentity;
17 | };
18 |
--------------------------------------------------------------------------------
/Modules/PackageManagementProviderResource/1.0.3/DSCResources/MSFT_PSModule/MSFT_PSModule.schema.mfl:
--------------------------------------------------------------------------------
1 | #pragma namespace("\\\\.\\root\\default")
2 | instance of __namespace{ name="MS_409";};
3 | #pragma namespace("\\\\.\\root\\default\\MS_409")
4 |
5 | [AMENDMENT, LOCALE("MS_409")]
6 | class MSFT_PSModule : OMI_BaseResource
7 | {
8 | [Key,Description("Name of the module\n") : Amended] String Name;
9 | [Description("Whether the module is to be installed or uninstalled.\nPresent {default} \nAbsent \n") : Amended] String Ensure;
10 | [Description("The name of the module source where the module can be found.\n") : Amended] String Repository;
11 | [Description("Whether the package is trusted or untrusted.\nTrusted {default} \nUntrusted \n") : Amended] String InstallationPolicy;
12 | [Description("The required version of the module.\n") : Amended] String RequiredVersion;
13 | [Description("The minimum version of the module.\n") : Amended] String MinimumVersion;
14 | [Description("The brief description of the module.\n") : Amended] string Description;
15 | [Description("The version of the module that is installed.\n") : Amended] String InstalledVersion;
16 | [Description("The identifier of the module.\n") : Amended] String Guid;
17 | [Description("The base location where the module is installed.\n") : Amended] String ModuleBase;
18 | [Description("The type of the module.\n") : Amended] String ModuleType;
19 | [Description("The author of the module.\n") : Amended] String Author;
20 | };
21 |
--------------------------------------------------------------------------------
/Modules/PackageManagementProviderResource/1.0.3/DSCResources/MSFT_PSModule/MSFT_PSModule.schema.mof:
--------------------------------------------------------------------------------
1 |
2 | [ClassVersion("1.0.0.0"),FriendlyName("PSModule")]
3 | class MSFT_PSModule : OMI_BaseResource
4 | {
5 | [Key] String Name;
6 | [Write,ValueMap{"Present", "Absent"},Values{"Present", "Absent"}] String Ensure;
7 | [Write] String Repository;
8 | [Write,ValueMap{"Trusted", "Untrusted"},Values{"Trusted", "Untrusted"}] String InstallationPolicy;
9 | [Write] String RequiredVersion;
10 | [Write] String MinimumVersion;
11 | [Read] string Description;
12 | [Read] String InstalledVersion;
13 | [Read] String Guid;
14 | [Read] String ModuleBase;
15 | [Read] String ModuleType;
16 | [Read] String Author;
17 | };
18 |
--------------------------------------------------------------------------------
/Modules/PackageManagementProviderResource/1.0.3/DSCResources/MSFT_PackageManagement/MSFT_PackageManagement.schema.mfl:
--------------------------------------------------------------------------------
1 | #pragma namespace("\\\\.\\root\\default")
2 | instance of __namespace{ name="MS_409";};
3 | #pragma namespace("\\\\.\\root\\default\\MS_409")
4 |
5 | [AMENDMENT, LOCALE("MS_409")]
6 | class MSFT_PackageManagementSource : OMI_BaseResource
7 | {
8 | [Key,Description("The name of the package source.\n") : Amended] string Name;
9 | [Description("The name of the package provider.\n") : Amended] String ProviderName;
10 | [Description("The Uri location of the package source.\n") : Amended] String SourceUri;
11 | [Description("Whether the package source is to be registered or unregistered.\nPresent {default} \nAbsent \n") : Amended] String Ensure;
12 | [Description("The credential used to access repository of package source.\n") : Amended] String SourceCredential;
13 | [Description("Whether the package is trusted or untrusted.\nTrusted {default} \nUntrusted \n") : Amended] String InstallationPolicy;
14 | };
15 |
--------------------------------------------------------------------------------
/Modules/PackageManagementProviderResource/1.0.3/DSCResources/MSFT_PackageManagement/MSFT_PackageManagement.schema.mof:
--------------------------------------------------------------------------------
1 |
2 | [ClassVersion("1.0.0.0"),FriendlyName("PackageManagement")]
3 | class MSFT_PackageManagement : OMI_BaseResource
4 | {
5 | [Key] string Name;
6 | [Write] string RequiredVersion;
7 | [Write] string MinimumVersion;
8 | [Write] string MaximumVersion;
9 | [Write] string Source;
10 | [Write,EmbeddedInstance("MSFT_Credential")] String SourceCredential;
11 | [Write] String ProviderName;
12 | [Write, EmbeddedInstance("MSFT_KeyValuePair")] String AdditionalParameters[];
13 | [Write,ValueMap{"Present", "Absent"},Values{"Present", "Absent"}] String Ensure;
14 | };
15 |
--------------------------------------------------------------------------------
/Modules/PackageManagementProviderResource/1.0.3/DSCResources/MSFT_PackageManagement/MSFT_PackageManagement.strings.psd1:
--------------------------------------------------------------------------------
1 | #
2 | # Copyright (c) Microsoft Corporation.
3 | #
4 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
5 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
6 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
7 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
8 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
9 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
10 | # THE SOFTWARE.
11 | #
12 | ConvertFrom-StringData @'
13 | ###PSLOC
14 | StartGetPackage=Begin invoking Get-package {0} using PSModulePath {1}.
15 | PackageFound=Package '{0}' found.
16 | PackageNotFound=Package '{0}' not found.
17 | MultiplePackagesFound=More than one package found for package '{0}'.
18 | StartTestPackage=Test-TargetResource calling Get-TargetResource using {0}.
19 | InDesiredState=Resource {0} is in the desired state. Required Ensure is {1} and actual Ensure is {2}
20 | NotInDesiredState=Resource {0} is not in the desired state. Required Ensure is {1} and actual Ensure is {2}
21 | StartSetPackage=Set-TargetResource calling Test-TargetResource using {0}.
22 | InstallPackageInSet=Calling Install-Package using {0}.
23 | ###PSLOC
24 |
25 | '@
26 |
27 |
--------------------------------------------------------------------------------
/Modules/PackageManagementProviderResource/1.0.3/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.psm1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PackageManagementProviderResource/1.0.3/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.psm1
--------------------------------------------------------------------------------
/Modules/PackageManagementProviderResource/1.0.3/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.schema.mfl:
--------------------------------------------------------------------------------
1 | #pragma namespace("\\\\.\\root\\default")
2 | instance of __namespace{ name="MS_409";};
3 | #pragma namespace("\\\\.\\root\\default\\MS_409")
4 |
5 | [AMENDMENT, LOCALE("MS_409")]
6 | class MSFT_PackageManagementSource : OMI_BaseResource
7 | {
8 | [Key,Description("The name of the package source.\n") : Amended] string Name;
9 | [Description("The name of the package provider.\n") : Amended] String ProviderName;
10 | [Description("The Uri location of the package source.\n") : Amended] String SourceUri;
11 | [Description("Whether the package source is to be registered or unregistered.\nPresent {default} \nAbsent \n") : Amended] String Ensure;
12 | [Description("The credential used to access repository of package source.\n") : Amended] String SourceCredential;
13 | [Description("Whether the package is trusted or untrusted.\nTrusted {default} \nUntrusted \n") : Amended] String InstallationPolicy;
14 | };
15 |
--------------------------------------------------------------------------------
/Modules/PackageManagementProviderResource/1.0.3/DSCResources/MSFT_PackageManagementSource/MSFT_PackageManagementSource.schema.mof:
--------------------------------------------------------------------------------
1 |
2 | [ClassVersion("1.0.0.0"),FriendlyName("PackageManagementSource")]
3 | class MSFT_PackageManagementSource : OMI_BaseResource
4 | {
5 | [Key] string Name;
6 | [Required] String ProviderName;
7 | [Required] String SourceUri;
8 | [Write,ValueMap{"Present", "Absent"},Values{"Present", "Absent"}] String Ensure;
9 | [Write,EmbeddedInstance("MSFT_Credential")] String SourceCredential;
10 | [Write,ValueMap{"Trusted", "Untrusted"},Values{"Trusted", "Untrusted"}] String InstallationPolicy;
11 | };
12 |
--------------------------------------------------------------------------------
/Modules/PackageManagementProviderResource/1.0.3/DSCResources/OneGetHelper.strings.psd1:
--------------------------------------------------------------------------------
1 | #
2 | # Copyright (c) Microsoft Corporation.
3 | #
4 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
5 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
6 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
7 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
8 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
9 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
10 | # THE SOFTWARE.
11 | #
12 | # culture="en-US"
13 | ConvertFrom-StringData @'
14 | ###PSLOC
15 | InValidUri=InValid Uri: '{0}'. A sample valid uri: https://www.powershellgallery.com/api/v2/.
16 | PathDoesNotExist=Path: '{0}' does not exist
17 | VersionError=MinimumVersion should be less than the maximumVersion. The MinimumVersion or maximumVersion cannot be used with the RequiredVersion in the same command.
18 | UnexpectedArgument=Unexpected argument type: '{0}'
19 | SourceNotFound=Source '{0}' not found. Please make sure you register it.
20 | CallingFunction="Call a function '{0}'".
21 | ###PSLOC
22 | '@
23 |
--------------------------------------------------------------------------------
/Modules/PackageManagementProviderResource/1.0.3/Examples/Sample_PSModule.ps1:
--------------------------------------------------------------------------------
1 | #
2 | # Copyright (c) Microsoft Corporation.
3 | #
4 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
5 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
6 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
7 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
8 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
9 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
10 | # THE SOFTWARE.
11 | #
12 | configuration Sample_PSModule
13 | {
14 | param
15 | (
16 | #Target nodes to apply the configuration
17 | [string[]]$NodeName = 'localhost',
18 |
19 | #The name of the module
20 | [Parameter(Mandatory)]
21 | [string]$Name,
22 |
23 | #The required version of the module
24 | [string]$RequiredVersion,
25 |
26 | #Repository name
27 | [string]$Repository,
28 |
29 | #Whether you trust the repository
30 | [string]$InstallationPolicy
31 | )
32 |
33 |
34 | Import-DscResource -Module PackageManagementProviderResource
35 |
36 | Node $NodeName
37 | {
38 | #Install a package from the Powershell gallery
39 | PSModule MyPSModule
40 | {
41 | Ensure = "present"
42 | Name = $Name
43 | RequiredVersion = "0.2.16.3"
44 | Repository = "PSGallery"
45 | InstallationPolicy="trusted"
46 | }
47 | }
48 | }
49 |
50 |
51 | #Compile it
52 | Sample_PSModule -Name "xjea"
53 |
54 | #Run it
55 | Start-DscConfiguration -path .\Sample_PSModule -wait -Verbose -force
56 |
--------------------------------------------------------------------------------
/Modules/PackageManagementProviderResource/1.0.3/LICENSE.txt:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2015 Microsoft Corporation.
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
22 |
--------------------------------------------------------------------------------
/Modules/PackageManagementProviderResource/1.0.3/PSGetModuleInfo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/PackageManagementProviderResource/1.0.3/PSGetModuleInfo.xml
--------------------------------------------------------------------------------
/Modules/PackageManagementProviderResource/1.0.3/Test/run-tests.ps1:
--------------------------------------------------------------------------------
1 | cd "$PSScriptRoot"
2 | invoke-pester
3 |
--------------------------------------------------------------------------------
/Modules/SQLExpress/DSCResources/SQLExpressDatabase/SQLExpressDatabase.psm1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/SQLExpress/DSCResources/SQLExpressDatabase/SQLExpressDatabase.psm1
--------------------------------------------------------------------------------
/Modules/SQLExpress/DSCResources/SQLExpressDatabase/SQLExpressDatabase.schema.mof:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/SQLExpress/DSCResources/SQLExpressDatabase/SQLExpressDatabase.schema.mof
--------------------------------------------------------------------------------
/Modules/SQLExpress/DSCResources/SQLExpressInstance/SQLExpressInstance.psm1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/SQLExpress/DSCResources/SQLExpressInstance/SQLExpressInstance.psm1
--------------------------------------------------------------------------------
/Modules/SQLExpress/DSCResources/SQLExpressInstance/SQLExpressInstance.schema.mof:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/SQLExpress/DSCResources/SQLExpressInstance/SQLExpressInstance.schema.mof
--------------------------------------------------------------------------------
/Modules/SQLExpress/SQLExpress.psd1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/SQLExpress/SQLExpress.psd1
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/DSCResources/Helper.psm1:
--------------------------------------------------------------------------------
1 | # Localized messages
2 | data LocalizedData
3 | {
4 | # culture="en-US"
5 | ConvertFrom-StringData @'
6 | RoleNotFound = Please ensure that the PowerShell module for role {0} is installed
7 | '@
8 | }
9 |
10 | # Internal function to throw terminating error with specified errroCategory, errorId and errorMessage
11 | function New-TerminatingError
12 | {
13 | [CmdletBinding()]
14 | param
15 | (
16 | [Parameter(Mandatory)]
17 | [String] $ErrorId,
18 |
19 | [Parameter(Mandatory)]
20 | [String] $ErrorMessage,
21 |
22 | [Parameter(Mandatory)]
23 | [System.Management.Automation.ErrorCategory] $ErrorCategory
24 | )
25 |
26 | $exception = New-Object System.InvalidOperationException $errorMessage
27 | $errorRecord = New-Object System.Management.Automation.ErrorRecord $exception, $errorId, $errorCategory, $null
28 | throw $errorRecord
29 | }
30 |
31 | # Internal function to assert if the role specific module is installed or not
32 | function Assert-Module
33 | {
34 | [CmdletBinding()]
35 | param
36 | (
37 | [String] $moduleName = 'WebAdministration'
38 | )
39 |
40 | if(-not (Get-Module -Name $moduleName -ListAvailable))
41 | {
42 | $errorMsg = $($LocalizedData.RoleNotFound) -f $moduleName
43 | New-TerminatingError -ErrorId 'ModuleNotFound' -ErrorMessage $errorMsg -ErrorCategory ObjectNotFound
44 | }
45 | }
46 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIIsHandler/MSFT_xIisHandler.schema.mof:
--------------------------------------------------------------------------------
1 | [ClassVersion("1.0.0"), FriendlyName("xIisHandler")]
2 | class MSFT_xIisHandler : OMI_BaseResource
3 | {
4 | [Key] string Name;
5 | [Required,ValueMap{"Present", "Absent"},Values{"Present", "Absent"}] string Ensure;
6 | };
7 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIisFeatureDelegation/MSFT_xIisFeatureDelegation.schema.mof:
--------------------------------------------------------------------------------
1 | [ClassVersion("1.0.0"), FriendlyName("xIisFeatureDelegation")]
2 | class MSFT_xIisFeatureDelegation : OMI_BaseResource
3 | {
4 | [Key] string SectionName;
5 | [Key,ValueMap{"Allow", "Deny"},Values{"Allow", "Deny"}] string OverrideMode;
6 | };
7 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIisMimeTypeMapping/MSFT_xIisMimeTypeMapping.schema.mof:
--------------------------------------------------------------------------------
1 | [ClassVersion("1.0.0"), FriendlyName("xIisMimeTypeMapping")]
2 | class MSFT_xIisMimeTypeMapping : OMI_BaseResource
3 | {
4 | [Key] string Extension;
5 | [Key] string MimeType;
6 | [Required,ValueMap{"Present", "Absent"},Values{"Present", "Absent"}] string Ensure;
7 | };
8 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xIisModule/MSFT_xIisModule.schema.mof:
--------------------------------------------------------------------------------
1 |
2 | [ClassVersion("1.0.0"), FriendlyName("xIisModule")]
3 | class MSFT_xIisModule : OMI_BaseResource
4 | {
5 | [Key, Description("The path to the module, usually a dll, to be added to IIS.")] String Path;
6 | [Required, Description("The logical name of the module to add to IIS.")] String Name;
7 | [Required, Description("The allowed request Path example: *.php")] String RequestPath;
8 | [Required, Description("The supported verbs for the module.")] String Verb[];
9 | [Write, Description("The IIS Site to register the module.")] String SiteName;
10 | [Write, Description("Should the module be present or absent."), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure;
11 | [Write, Description("The type of the module."), ValueMap{"FastCgiModule"}, Values{"FastCgiModule"}] String ModuleType;
12 | [Read, Description("The End Point is setup. Such as a Fast Cgi endpoint.")] Boolean EndPointSetup;
13 | };
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xSSLSettings/MSFT_xSSLSettings.schema.mof:
--------------------------------------------------------------------------------
1 | [ClassVersion("1.0"), FriendlyName("xSSLSettings")]
2 | class MSFT_xSSLSettings : OMI_BaseResource
3 | {
4 | [Key, Description("Name of website in which to modify the SSL Settings")] string Name;
5 | [Required, Description("The Bindings in which to modify for the website")] string Bindings[];
6 | [Write,ValueMap{"Present", "Absent"},Values{"Present", "Absent"},Description("Whether the bindings should be present or absent")] string Ensure;
7 | };
8 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebAppPoolDefaults/MSFT_xWebAppPoolDefaults.schema.mof:
--------------------------------------------------------------------------------
1 |
2 | [ClassVersion("1.0.0.0"), FriendlyName("xWebAppPoolDefaults")]
3 | class MSFT_xWebAppPoolDefaults : OMI_BaseResource
4 | {
5 | [Key, Description("Dummy value because we need a key, always 'Machine'"), ValueMap{"Machine"}, Values{"Machine"}] string ApplyTo;
6 | [write, Description("applicationPools/applicationPoolDefaults/managedRuntimeVersion"), ValueMap{"","v2.0","v4.0"}, Values{"","v2.0","v4.0"}] string ManagedRuntimeVersion;
7 | [write, Description("applicationPools/applicationPoolDefaults/processModel/identityType"), ValueMap{"ApplicationPoolIdentity","LocalService","LocalSystem","NetworkService"}, Values{"ApplicationPoolIdentity","LocalService","LocalSystem","NetworkService"}] string IdentityType;
8 | };
9 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebApplication/MSFT_xWebApplication.schema.mof:
--------------------------------------------------------------------------------
1 |
2 | [ClassVersion("1.0.0.0"), FriendlyName("xWebApplication")]
3 | class MSFT_xWebApplication : OMI_BaseResource
4 | {
5 | [Key, Description("Name of website with which web application is associated")] string Website;
6 | [Key, Description("Name of web application")] string Name;
7 | [Required, Description("Web application pool for the web application")] string WebAppPool;
8 | [Required, Description("Physical path for the web application directory")] string PhysicalPath;
9 | [Write, Description("Whether web application should be present or absent"), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] string Ensure;
10 | };
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebConfigKeyValue/MSFT_xWebConfigKeyValue.schema.mof:
--------------------------------------------------------------------------------
1 |
2 | [ClassVersion("1.0.0.0"), FriendlyName("xWebConfigKeyValue")]
3 | class MSFT_xWebConfigKeyValue : OMI_BaseResource
4 | {
5 | [Key, Description("Path to website location(IIS or WebAdministration format)")] String WebsitePath;
6 | [Key, Description("Config Section to be update"), ValueMap{"AppSettings"}, Values{"AppSettings"}] String ConfigSection;
7 | [Write, ValueMap{"Present","Absent"}, Values{"Present","Absent"}] String Ensure;
8 | [Key, Description("Key for AppSettings")] String Key;
9 | [Write, Description("Value for AppSettings")] String Value;
10 | [Write, Description("If the given key value pair is for attribute, default is element")] Boolean IsAttribute;
11 | };
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebConnectionString/MSFT_xWebConnectionString.psm1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebConnectionString/MSFT_xWebConnectionString.psm1
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebConnectionString/MSFT_xWebConnectionString.schema.mof:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebConnectionString/MSFT_xWebConnectionString.schema.mof
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebSiteDefaults/MSFT_xWebSiteDefaults.schema.mof:
--------------------------------------------------------------------------------
1 | [ClassVersion("1.0.0"), FriendlyName("xWebSiteDefaults")]
2 | class MSFT_xWebSiteDefaults : OMI_BaseResource
3 | {
4 | [Key, Description("Dummy value because we need a key, always 'Machine'"), ValueMap{"Machine"}, Values{"Machine"}] string ApplyTo;
5 | [write, Description("sites/siteDefaults/logFile/logFormat"), ValueMap{"W3C","IIS","NCSA","Custom"}, Values{"W3C","IIS","NCSA","Custom"}] string LogFormat;
6 | [write, Description("sites/siteDefaults/logFile/directory")] string LogDirectory;
7 | [write, Description("sites/siteDefaults/traceFailedRequestsLogging/directory")] string TraceLogDirectory;
8 | [write, Description("sites/applicationDefaults/applicationPool")] string DefaultApplicationPool;
9 | [write, Description("sites/virtualDirectoryDefaults/allowSubDirConfig"), ValueMap{"true","false"}, Values{"true","false"}] string AllowSubDirConfig;
10 | };
11 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebVirtualDirectory/MSFT_xWebVirtualDirectory.schema.mof:
--------------------------------------------------------------------------------
1 |
2 | [ClassVersion("1.0.0.0"), FriendlyName("xWebVirtualDirectory")]
3 | class MSFT_xWebVirtualDirectory : OMI_BaseResource
4 | {
5 | [Key, Description("Name of website with which Web Application is associated")] string Website;
6 | [Key, Description("Web application name for the virtual directory")] string WebApplication;
7 | [Key, Description("Name of virtual directory")] string Name;
8 | [Required, Description("Physical path for the virtual directory")] string PhysicalPath;
9 | [Write, Description("Whether virtual directory should be present or absent"), ValueMap{"Present","Absent"}, Values{"Present","Absent"}] string Ensure;
10 | };
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/DSCResources/MSFT_xWebsite/MSFT_xWebsite.schema.mof:
--------------------------------------------------------------------------------
1 | [ClassVersion("1.0.0")]
2 | class MSFT_xWebBindingInformation
3 | {
4 | [Required,ValueMap{"http","https","msmq.formatname","net.msmq","net.pipe","net.tcp"},Values{"http","https","msmq.formatname","net.msmq","net.pipe","net.tcp"}] String Protocol;
5 | [Write] String BindingInformation;
6 | [Write] String IPAddress;
7 | [Write] UInt16 Port;
8 | [Write] String HostName;
9 | [Write] String CertificateThumbprint;
10 | [Write,ValueMap{"My", "WebHosting"},Values{"My", "WebHosting"}] String CertificateStoreName;
11 | [Write,ValueMap{"0","1","2","3"},Values{"0","1","2","3"}] String SslFlags;
12 | };
13 |
14 | [ClassVersion("2.0.0"), FriendlyName("xWebsite")]
15 | class MSFT_xWebsite : OMI_BaseResource
16 | {
17 | [Write,ValueMap{"Present", "Absent"},Values{"Present", "Absent"}] String Ensure;
18 | [Key] String Name;
19 | [Required] String PhysicalPath;
20 | [Write,ValueMap{"Started","Stopped"},Values{"Started", "Stopped"}] String State;
21 | [Write] String ApplicationPool;
22 | [Write, EmbeddedInstance("MSFT_xWebBindingInformation"), Description("Website's binding information in the form of an array of embedded instances of the MSFT_xWebBindingInformation CIM class.")] String BindingInfo[];
23 | [Write] String DefaultPage[];
24 | [Write] String EnabledProtocols;
25 | };
26 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/Examples/README.md:
--------------------------------------------------------------------------------
1 | For legal reasons, we cannot include BakeryWebsite.zip in the examples folder. To make the example work:
2 |
3 | * Download [this zip file](http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-63-74-metablogapi/3124.Demo_5F00_WindowServer2012R2_2D00_Preview_5F00_4677B514.zip) from [this blog post](http://blogs.msdn.com/b/powershell/archive/2013/07/29/powershell-sessions-slides-and-demos-from-teched-2013.aspx)
4 | * Extract the PreReq/BakeryWebsite folder to C:\BakeryWebsite
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/Examples/Sample_xIisFeatureDelegation_AllowSome.ps1:
--------------------------------------------------------------------------------
1 | configuration Sample_IISFeatureDelegation
2 | {
3 | param
4 | (
5 | # Target nodes to apply the configuration
6 | [string[]] $NodeName = 'localhost'
7 | )
8 |
9 | # Import the module that defines custom resources
10 | Import-DscResource -Module xWebAdministration, PSDesiredStateConfiguration
11 |
12 | Node $NodeName
13 | {
14 | # Install the IIS role
15 | WindowsFeature IIS
16 | {
17 | Ensure = 'Present'
18 | Name = 'Web-Server'
19 | }
20 |
21 | # Allow Write access to some section that normally don't have it.
22 | xIisFeatureDelegation serverRuntime
23 | {
24 | SectionName = 'serverRuntime'
25 | OverrideMode = 'Allow'
26 | }
27 | xIisFeatureDelegation anonymousAuthentication
28 | {
29 | SectionName = 'security/authentication/anonymousAuthentication'
30 | OverrideMode = 'Allow'
31 | }
32 |
33 | xIisFeatureDelegation ipSecurity
34 | {
35 | SectionName = 'security/ipSecurity'
36 | OverrideMode = 'Allow'
37 | }
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/Examples/Sample_xIisHandler_Remove32Bit.ps1:
--------------------------------------------------------------------------------
1 | configuration Sample_RemoveSome32BitHandlers
2 | {
3 | param
4 | (
5 | # Target nodes to apply the configuration
6 | [string[]]$NodeName = 'localhost'
7 | )
8 |
9 | # Import the module that defines custom resources
10 | Import-DscResource -Module xWebAdministration, PSDesiredStateConfiguration
11 |
12 | Node $NodeName
13 | {
14 | # Install the IIS role
15 | WindowsFeature IIS
16 | {
17 | Ensure = 'Present'
18 | Name = 'Web-Server'
19 | }
20 |
21 | xIisHandler aspq_ISAPI_4_0_32bit
22 | {
23 | Name = 'aspq-ISAPI-4.0_32bit'
24 | Ensure = 'Absent'
25 | }
26 |
27 | xIisHandler cshtm_ISAPI_4_0_32bit
28 | {
29 | Name = 'cshtm-ISAPI-4.0_32bit'
30 | Ensure = 'Absent'
31 | }
32 |
33 | xIisHandler cshtml_ISAPI_4_0_32bit
34 | {
35 | Name = 'cshtml-ISAPI-4.0_32bit'
36 | Ensure = 'Absent'
37 | }
38 |
39 | xIisHandler vbhtm_ISAPI_4_0_32bit
40 | {
41 | Name = 'vbhtm-ISAPI-4.0_32bit'
42 | Ensure = 'Absent'
43 | }
44 |
45 | xIisHandler vbhtml_ISAPI_4_0_32bit
46 | {
47 | Name = 'vbhtml-ISAPI-4.0_32bit'
48 | Ensure = 'Absent'
49 | }
50 |
51 | }
52 | }
53 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/Examples/Sample_xIisMimeTypeMapping_RemoveVideo.ps1:
--------------------------------------------------------------------------------
1 | configuration Sample_RemoveVideoMimeTypeMappings
2 | {
3 | param
4 | (
5 | # Target nodes to apply the configuration
6 | [string[]]$NodeName = 'localhost'
7 | )
8 |
9 | # Import the module that defines custom resources
10 | Import-DscResource -Module xWebAdministration, PSDesiredStateConfiguration
11 |
12 | Node $NodeName
13 | {
14 | # Install the IIS role
15 | WindowsFeature IIS
16 | {
17 | Ensure = 'Present'
18 | Name = 'Web-Server'
19 | }
20 |
21 | # Remove a bunch of Video Mime Type mappings
22 | xIisMimeTypeMapping Mp2
23 | {
24 | Ensure = 'Absent'
25 | Extension = '.mp2'
26 | MimeType = 'video/mpeg'
27 | DependsOn = '[WindowsFeature]IIS'
28 | }
29 |
30 | xIisMimeTypeMapping Mp4
31 | {
32 | Ensure = 'Absent'
33 | Extension = '.mp4'
34 | MimeType = 'video/mp4'
35 | DependsOn = '[WindowsFeature]IIS'
36 | }
37 |
38 | xIisMimeTypeMapping Mpeg
39 | {
40 | Ensure = 'Absent'
41 | Extension = '.mpeg'
42 | MimeType = 'video/mpeg'
43 | DependsOn = '[WindowsFeature]IIS'
44 | }
45 |
46 | # we only allow the mpg Video extension on our server
47 | xIisMimeTypeMapping Mpg
48 | {
49 | Ensure = 'Present'
50 | Extension = '.mpg'
51 | MimeType = 'video/mpeg'
52 | DependsOn = '[WindowsFeature]IIS'
53 | }
54 | }
55 | }
56 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/Examples/Sample_xIisServerDefaults.ps1:
--------------------------------------------------------------------------------
1 | configuration Sample_IISServerDefaults
2 | {
3 | param
4 | (
5 | # Target nodes to apply the configuration
6 | [string[]]$NodeName = 'localhost'
7 | )
8 |
9 | # Import the module that defines custom resources
10 | Import-DscResource -Module xWebAdministration, PSDesiredStateConfiguration
11 |
12 | Node $NodeName
13 | {
14 | xWebSiteDefaults SiteDefaults
15 | {
16 | ApplyTo = 'Machine'
17 | LogFormat = 'IIS'
18 | AllowSubDirConfig = 'true'
19 | }
20 |
21 |
22 | xWebAppPoolDefaults PoolDefaults
23 | {
24 | ApplyTo = 'Machine'
25 | ManagedRuntimeVersion = 'v4.0'
26 | IdentityType = 'ApplicationPoolIdentity'
27 | }
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/Examples/Sample_xSSLSettings_RequireCert.ps1:
--------------------------------------------------------------------------------
1 | configuration Sample_xSSLSetting_RequireCert
2 | {
3 | param
4 | (
5 | # Target nodes to apply the configuration
6 | [string[]]$NodeName = 'localhost'
7 | )
8 |
9 | # Import the module that defines custom resources
10 | Import-DscResource -Module xWebAdministration
11 |
12 | Node $NodeName
13 | {
14 | xSSLSettings SiteDefaults
15 | {
16 | Ensure = 'Present'
17 | Name = 'contoso.com'
18 | Bindings = @('Ssl', 'SslNegotiateCert', 'SslRequireCert')
19 | }
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/Examples/Sample_xWebsite_ConfigurationData.psd1:
--------------------------------------------------------------------------------
1 | # Hashtable to define the environmental data
2 | @{
3 | # Node specific data
4 | AllNodes = @(
5 |
6 | # All the WebServer has following identical information
7 | @{
8 | NodeName = '*'
9 | WebsiteName = 'FourthCoffee'
10 | SourcePath = 'C:\BakeryWebsite\'
11 | DestinationPath = 'C:\inetpub\FourthCoffee'
12 | DefaultWebSitePath = 'C:\inetpub\wwwroot'
13 | },
14 |
15 | @{
16 | NodeName = 'WebServer1.fourthcoffee.com'
17 | Role = 'Web'
18 | },
19 |
20 | @{
21 | NodeName = 'WebServer2.fourthcoffee.com'
22 | Role = 'Web'
23 | }
24 | );
25 | }
26 |
27 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/Examples/Sample_xWebsite_RemoveDefault.ps1:
--------------------------------------------------------------------------------
1 | configuration Sample_xWebsite_StopDefault
2 | {
3 | param
4 | (
5 | # Target nodes to apply the configuration
6 | [string[]]$NodeName = 'localhost'
7 | )
8 |
9 | # Import the module that defines custom resources
10 | Import-DscResource -Module xWebAdministration, PSDesiredStateConfiguration
11 |
12 | Node $NodeName
13 | {
14 | # Install the IIS role
15 | WindowsFeature IIS
16 | {
17 | Ensure = 'Present'
18 | Name = 'Web-Server'
19 | }
20 |
21 | # Stop the default website
22 | xWebsite DefaultSite
23 | {
24 | Ensure = 'Present'
25 | Name = 'Default Web Site'
26 | State = 'Stopped'
27 | PhysicalPath = 'C:\inetpub\wwwroot'
28 | DependsOn = '[WindowsFeature]IIS'
29 | }
30 | }
31 | }
32 |
33 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2015 Microsoft Corporation.
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/PSGetModuleInfo.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/xWebAdministration/1.9.0.0/PSGetModuleInfo.xml
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xIISFeatureDelegation.Integration.Tests.ps1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PowerShell/PSPrivateGallery/9a0e1d90e95a74d06e2b3cdce2bb6e1b837c0e3a/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xIISFeatureDelegation.Integration.Tests.ps1
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xIISFeatureDelegation.config.ps1:
--------------------------------------------------------------------------------
1 | configuration MSFT_xIISFeatureDelegation_AllowDelegation
2 | {
3 | Import-DscResource -ModuleName xWebAdministration
4 |
5 | xIisFeatureDelegation AllowDelegation
6 | {
7 | SectionName = 'security/authentication/anonymousAuthentication'
8 | OverrideMode = 'Allow'
9 | }
10 | }
11 |
12 | configuration MSFT_xIISFeatureDelegation_DenyDelegation
13 | {
14 | Import-DscResource -ModuleName xWebAdministration
15 |
16 | xIisFeatureDelegation DenyDelegation
17 | {
18 | SectionName = 'defaultDocument'
19 | OverrideMode = 'Deny'
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xIISHandler.config.ps1:
--------------------------------------------------------------------------------
1 | configuration MSFT_xIISHandler_RemoveHandler
2 | {
3 | Import-DscResource -ModuleName xWebAdministration
4 |
5 | xIisHandler TRACEVerbHandler
6 | {
7 | Name = 'TRACEVerbHandler'
8 | Ensure = 'Absent'
9 | }
10 | }
11 |
12 | configuration MSFT_xIISHandler_AddHandler
13 | {
14 | Import-DscResource -ModuleName xWebAdministration
15 |
16 | xIisHandler WebDAV
17 | {
18 | Name = 'WebDAV'
19 | Ensure = 'Present'
20 | }
21 | }
22 |
23 | configuration MSFT_xIISHandler_StaticFileHandler
24 | {
25 | Import-DscResource -ModuleName xWebAdministration
26 |
27 | xIisHandler StaticFile
28 | {
29 | Name = 'StaticFile'
30 | Ensure = 'Present'
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xIISMimeTypeMapping.config.ps1:
--------------------------------------------------------------------------------
1 | configuration MSFT_xIISMimeTypeMapping_Config
2 | {
3 | Import-DscResource -ModuleName xWebAdministration
4 |
5 | xIIsMimeTypeMapping AddMimeType
6 | {
7 | Extension = '.PesterDummy'
8 | MimeType = 'text/plain'
9 | Ensure = 'Present'
10 | }
11 | }
12 |
13 | configuration MSFT_xIISMimeTypeMapping_AddMimeType
14 | {
15 | Import-DscResource -ModuleName xWebAdministration
16 |
17 | xIIsMimeTypeMapping AddMimeType2
18 | {
19 | Extension = $env:PesterFileExtension2
20 | MimeType = $env:PesterMimeType2
21 | Ensure = 'Present'
22 | }
23 | }
24 |
25 | configuration MSFT_xIISMimeTypeMapping_RemoveMimeType
26 | {
27 | Import-DscResource -ModuleName xWebAdministration
28 |
29 | xIIsMimeTypeMapping RemoveMimeType
30 | {
31 | Extension = $env:PesterFileExtension
32 | MimeType = $env:PesterMimeType
33 | Ensure = 'Absent'
34 | }
35 | }
36 |
37 | configuration MSFT_xIISMimeTypeMapping_RemoveDummyMime
38 | {
39 | Import-DscResource -ModuleName xWebAdministration
40 |
41 | xIIsMimeTypeMapping RemoveMimeType2
42 | {
43 | Extension = '.PesterDummy2'
44 | MimeType = 'text/dummy'
45 | Ensure = 'Absent'
46 | }
47 | }
48 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebAppPoolDefaults.config.ps1:
--------------------------------------------------------------------------------
1 | [string] $constPsPath = 'MACHINE/WEBROOT/APPHOST'
2 | [string] $constAPDFilter = 'system.applicationHost/applicationPools/applicationPoolDefaults'
3 | [string] $constSiteFilter = 'system.applicationHost/sites/'
4 |
5 | [string] $originalValue = (Get-WebConfigurationProperty -pspath $constPsPath -filter $constAPDFilter -name managedRuntimeVersion).Value
6 |
7 | configuration MSFT_xWebAppPoolDefaults_Config
8 | {
9 | Import-DscResource -ModuleName xWebAdministration
10 |
11 | xWebAppPoolDefaults PoolDefaults
12 | {
13 | ApplyTo = 'Machine'
14 | ManagedRuntimeVersion = $originalValue
15 | }
16 | }
17 |
18 | configuration MSFT_xWebAppPoolDefaults_ManagedRuntimeVersion
19 | {
20 | Import-DscResource -ModuleName xWebAdministration
21 |
22 | xWebAppPoolDefaults PoolDefaults
23 | {
24 | ApplyTo = 'Machine'
25 | ManagedRuntimeVersion = $env:PesterManagedRuntimeVersion
26 | }
27 | }
28 |
29 | configuration MSFT_xWebAppPoolDefaults_AppPoolIdentityType
30 | {
31 | Import-DscResource -ModuleName xWebAdministration
32 |
33 | xWebAppPoolDefaults PoolDefaults
34 | {
35 | ApplyTo = 'Machine'
36 | IdentityType = $env:PesterApplicationPoolIdentity
37 | }
38 | }
39 |
40 | configuration MSFT_xWebAppPoolDefaults_LogFormat
41 | {
42 | Import-DscResource -ModuleName xWebAdministration
43 |
44 | xWebSiteDefaults LogFormat
45 | {
46 | ApplyTo = 'Machine'
47 | LogFormat = $env:PesterLogFormat
48 | }
49 | }
50 |
51 | configuration MSFT_xWebAppPoolDefaults_DefaultPool
52 | {
53 | Import-DscResource -ModuleName xWebAdministration
54 |
55 | xWebSiteDefaults DefaultPool
56 | {
57 | ApplyTo = 'Machine'
58 | DefaultApplicationPool = $env:PesterDefaultPool
59 | }
60 | }
61 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebsite.config.ps1:
--------------------------------------------------------------------------------
1 | configuration MSFT_xWebsite_Config
2 | {
3 | Import-DscResource -ModuleName xWebAdministration
4 |
5 | xWebsite WebBindingInfo
6 | {
7 | Name = 'foobar'
8 | Ensure = 'absent'
9 | PhysicalPath = "$env:temp\WebBindingInfo"
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/Modules/xWebAdministration/1.9.0.0/Tests/Integration/MSFT_xWebsiteDefaults.config.ps1:
--------------------------------------------------------------------------------
1 | [string] $originalValue = (Get-WebConfigurationProperty `
2 | -PSPath 'MACHINE/WEBROOT/APPHOST' `
3 | -Filter 'system.applicationHost/sites/virtualDirectoryDefaults' `
4 | -Name 'allowSubDirConfig').Value
5 |
6 | if ($originalValue -eq "true")
7 | {
8 | $env:PesterVirtualDirectoryDefaults = "false"
9 | }
10 | else
11 | {
12 | $env:PesterVirtualDirectoryDefaults = "true"
13 | }
14 |
15 | configuration MSFT_xWebsiteDefaults_Config
16 | {
17 | Import-DscResource -ModuleName xWebAdministration
18 |
19 | xWebSiteDefaults virtualDirectoryDefaults
20 | {
21 | ApplyTo = 'Machine'
22 | AllowSubDirConfig = "$env:PesterVirtualDirectoryDefaults"
23 | }
24 | }
25 |
--------------------------------------------------------------------------------