Commit Graph

43 Commits (6ec568f6bb29ed33c2d2cd0430dcb4c049ecee92)

Author SHA1 Message Date
Luke Latham bdb6d7cafc Title, description, and H1 updates (4) (#5745)
* Title, description, and H1 updates (4)

* Updates

* Updates

* Drop gerunds and update link text

* Update

* Update next.md

* Update routing.md
2018-03-21 14:18:35 -10:00
Luke Latham f047169540 Drop [Main] from snippet references (#5547) 2018-02-24 10:08:11 -06:00
Dan Vicarel afdf3729e1 Fixed a jQuery error on the Model validation page (#5377) 2018-02-06 12:25:33 -06:00
Antoine Griffard 42c5c48cd7 Typo in MVC Model Validation (#5362)
however they wish => as they whish

Fixes #5361
2018-02-03 09:21:43 -10:00
Luke Latham abbe642741 Organize metadata (#5296)
Updates
2018-01-29 09:21:31 -06:00
Luke Latham fa24342f38 Remove smart quotes (#5294) 2018-01-28 15:49:15 -06:00
Luke Latham 313486d76f Taming the savage contraction issue (#5216)
* Form contractions

* Revert two contractions

* Additional reversions

* Additional reversions

* Additional revisions

* Additional revisions

* React to feedback
2018-01-24 09:27:24 -06:00
Luke Latham 1dd1a7fc8a
Remove localization segment from links (#5254) 2018-01-23 19:12:57 -06:00
Luke Latham 31df8fcabf Remove keywords and ms.assetid metadata from ASP.NET Core topics (#5208) 2018-01-19 14:11:45 -06:00
Luke Latham d1c84324e5 Kill double-spaces (#5206) 2018-01-19 14:04:54 -06:00
Rachel Appel 2a42c5a167
minor grammar edits (#5031) 2017-12-18 17:23:32 -05:00
Duane McKibbin fa16bf4e5c Adjust sample range to show method signature (#4860)
* Adjust sample range to show method signature

The section on using IValidatableObject was missing the Validate method signature and included an extra closing } 
The range was off by 1 on both sides.

Question: The first snippet sample for "Custom validation" looks weird because it contains the class name but not the closing } , not sure how to fix that though with the ?range syntax.

* Update validation.md
2017-11-27 15:03:58 -10:00
Dan Vicarel e2a7f0b335 Added References to jQuery Validate Plugins in the Model Validation Topic (#4751)
* Added more details on remote validation to the MVC model validation page

* Described the attribute -> tag helper -> jquery unobtrusive validation -> jquery validate flow for client-side validation in a little more detail.
2017-11-20 15:35:28 -05:00
Rachel Appel a7fe30958b
minor grammar fix (#4804) 2017-11-15 14:13:23 -05:00
Dan Vicarel 4fd18b286c Added Examples for Validating Dynamic Content to the Model Validation Topic (#4753) 2017-11-15 13:54:00 -05:00
Rick Anderson 034a54904e
Merge branch 'live' into master 2017-11-13 13:13:54 -10:00
Dan Vicarel b90685e708 Specified the language on two code snippets in the remote validation section (#4781) 2017-11-13 13:07:35 -10:00
Rick Anderson ccf08615ad
Update live with current master (#4772)
* Tabbifying script examples per OS (#4735)

* Command line deployment

* typo fix

* edits per review

* increased visibility of 'pub to azure' scenarios

* removed copy/paste debris

* Tabbified the local code segments

* fixed merge whoops

* attempting to fix TOC

* Fixed toc xref

* Update implementing-basic-crud-functionality-with-the-entity-framework-in-asp-net-mvc-application.md (#4745)

* Update adding-controller1.md (#4747)

* Update adding-controller1.md

* Update adding-controller1.md

* Update publish-to-azure-webapp-using-vs.md (#4746)

* Overhaul of resource-based auth doc (#4715)

* Updates to resource based auth doc

* More edits

* More edits

* Tag with mvc metadata

* Verbiage tweaks

* More edits

* More MVC edits

* More edits

* Initial commit of sample app

* Replace inline code with code imports

* Add download link to sample app

* Correct the requirement class name

* Adjust line number

* Verbiage tweak

* More edits

* Add 1.x sample

* Update sample apps folder name in link

* Minor edits

* More edits

* Fix metadata warnings

* Code cleanup

* Update description metadata

* Update property name in csproj file

* Update old namespaces in ASP.NET Core 2.x app

* Update .NET Fx target framework TODO comments

* Prevent action code from scrolling

* Add Razor Pages sample

* Fix line numbers for highlighting

* Return ForbidResult when appropriate in 2.0 app

* Add authentication assumption notes

* Update metadata

* React to Rick's feedback

* Add 1.x handler snippets

* Update adding_view1.md

* Fix broken sample apps link

* Minor improvement (#4757)

* Update using-gulp.md

* Update index.md

* Update create-an-aspnet-mvc-5-app-with-facebook-and-google-oauth2-and-openid-sign-on.md (#4767)

* Added Description for AdditionalFields Property of Remote Attribute (#4768)

* Updated model validation topic and example code to describe the Remote attribute AdditionalFields property

* Update validation.md

* Update update-related-data.md (#4761)
2017-11-10 15:41:52 -10:00
Dan Vicarel 29c81f521c Added Description for AdditionalFields Property of Remote Attribute (#4768)
* Updated model validation topic and example code to describe the Remote attribute AdditionalFields property

* Update validation.md
2017-11-10 14:16:20 -10:00
Rick Anderson b330159cb0 Update live with current master (#4454)
* Add PO localization doc

* More edits

* Updates TaskCache to Task

Since [TaskCache](https://github.com/aspnet/Common/issues/238) was removed this updates the samples to use `Task.CompletedTask` instead

* More edits

* More edits

* Change code snippet type from C# to CSHTML

* Add missing snippet types

* Add Required note to model validation topic

Fixes #1928

* MVC views overview update

Updates

Updates

Updates

Updates

Update

* React to feedback

* React to feedback

* Add support disclaimer

* UE pass on Publishing to IIS topic

* React to feedback

Minor update

* Move VS Tools for Docker doc to ASP.NET Core repo

* React to feedback

* React to feedback

* Drop literal_block comments and fix a few code blocks

* Fix demo code for AddAuthentication.AddCookie

In .Net Core 2.0 using the code as supplied results in an exception, the fix is to pass the scheme name when calling AddCookie.

Fails:
services.AddAuthentication("MyCookieAuthenticationScheme")
        .AddCookie

Works:
Fix demo code for services.AddAuthentication.AddCookie
services.AddAuthentication("MyCookieAuthenticationScheme")
        .AddCookie("MyCookieAuthenticationScheme",

* React to feedback

* Fix one

* React to feedback

* Convert title to sentence case

* Add missing param to AddCookie call

* React to feedback

* React to feedback

* Add RP tutorial step 'Uploading files' to TOC

* fix breadcrumb link to core

* Update model-binding.md

Fixing type `CancelationToken` -> `CancellationToken`

* minor clean up (#4431)

* Updates

* Fix a link

* Explain post delete method

Update

* Fix inadvertent uid change (typo)

* React to feedback

* React to feedback

* React to feedback

* Alter app cookie configuration code samples

* Update first-web-api-mac.md (#4441)

* Update web-api-vsc.md

* Remove dead project file (#4427)

* Updates to the intro: layouts, partials, VCs

* Update web-publishing-vs.md (#4447)

* Update web-publishing-vs.md

* Update web-publishing-vs.md

* Update identity-enable-qrcodes.md

* Update identity-enable-qrcodes.md

* Update identity-enable-qrcodes.md

* Remove extra space

* Minor edits

* Add TOC link to snapshot debugging doc

* Update index.md (#4443)

* Update index.md

* Update index.md
2017-09-29 11:34:37 -07:00
Luke Latham 98d5116273 React to feedback 2017-09-28 10:53:40 -05:00
Luke Latham 63467db347 React to feedback 2017-09-28 10:45:28 -05:00
Luke Latham 6cfecd5cee Updates 2017-09-27 21:47:41 -05:00
Luke Latham f76aa0bd2d React to feedback 2017-09-27 14:58:13 -05:00
Luke Latham 139b95ff04 React to feedback 2017-09-27 10:41:54 -05:00
Luke Latham cf91403960 React to feedback 2017-09-27 01:50:18 -05:00
Luke Latham 7f8596988c React to feedback
Minor update
2017-09-26 21:38:18 -05:00
Luke Latham d060967835 React to feedback 2017-09-26 15:19:22 -05:00
Luke Latham 11d5aacbda Add Required note to model validation topic
Fixes #1928
2017-09-22 21:29:11 -05:00
Luke Latham 18d1878f00 Trim keywords of keyword metadata
Patch 3
2017-09-21 02:22:29 -05:00
Isaac Levin 854c07c430 Remove Deadlinks in aspnetcore section of repo (#4241)
* Create mvc2.md

Added temp file to house doc requested in #3809

* Initial outline of document

* Added Note for Special Tooling (VS 2017 Preview 3)

Will remove when Preview 3 is updated into Release

* Added Porting Link

* Added Core DI Sample

* added DI Section

* Added Storing Configuration Settings Section

* Adding Custom Settings samples

* part of static content

* static content section

* .net standard section

* Adding Edit in VS 2017 Image

* Samples for Startup

* startup and csproj section

* update image reference

* Updates to Migration Doc

changes per @scottaddie

* Final round of changes

Please review

* Edits

* Fix invalid xref link

* More edits

* More edits

* More edits

* More edits

* More edits

* More edits

* Move Content to different directory

* Update Code Sample Links

* change sample location

* ::

* Update Sample Filenames

* Minor edit

* Remove extra space

* More edits

* Move Static Folder

* update reference to image

* Update mvc2.md

* Minor tweaks

* Changes to sample file

* Change copy for Configuration Section

* Fix code formatting

* Remove extra line feed

* Remove extra line feed

* Fix 3xx/4xx/5xx Status Codes in aspnetcore folder

* Take out locality references in urls:

* change MSDN urls to docs.microsoft if possible

* Update aspnet-core-module.md

* Update iis.md

* Remove localization from external links
2017-09-11 20:58:51 -05:00
Luke Latham 5d641ee2cb Update ValidationSample app (#4146)
Fixes #1950

* Upgrades sample to 2.0 with minor fixes
* No significant changes made to the topic
2017-08-30 08:40:35 -07:00
Rick Anderson c23f9b383b remove /en-us/ (#3670) 2017-07-10 12:20:50 -06:00
Rick Anderson 2225182397 remove | MS Docs (#3612) 2017-06-30 23:47:15 +00:00
Andy Pasic 010b730d27 Bulk metadata fix (#2871)
* meta data fix

* Revert "meta data fix"

This reverts commit ba36883476.

* meta data fix2

* test

* Update owin-oauth-20-authorization-server.md

* Update api-ref.md

* Update api-ref.md

* test

* test2
2017-03-02 14:50:36 -10:00
Tom Dykstra d429e7977e h1 update (#2844) 2017-02-27 12:40:05 -08:00
Tom Dykstra b1bd9f9ece mvc toc restructure (#2482)
* mvc toc restructure

* move mvc tutorial nodes to mvc section

* fix heading casing and toc node hierarchy

* add intro text to series index.md files
2017-01-14 13:59:26 -08:00
Andy Pasic a82e144ea1 fixed code snippets 2016-11-17 21:03:07 -08:00
Rick Anderson 17f93fe6c5 keywords and decription meta-data 2016-11-17 10:13:02 -10:00
Rick Anderson b23d49f1f6 title + meta on technology 2016-11-16 14:24:57 -10:00
Andy Pasic c13beeadd4 Removed U+FEFF (#2073)
* Removed U+FEFF

* Removed leading FEFF

* Update bootstrap.md

* Update bundling-and-minification.md

* Update knockout.md

* Update using-grunt.md

* Update yeoman.md

* Update style-guide.md

* Update error-handling.md

* Update localization.md

* Update middleware.md

* Update validation.md

* Update overview.md

* Update view-components.md

* Update iis-with-msdeploy.md

* Update iis.md

* Update web-publishing-vs.md

* Update sociallogins.md

* Update cors.md

* Update machine-wide-policy.md

* Update cross-site-scripting.md

* Update overview.md

* Update limited-lifetime-payloads.md

* Update overview.md

* Update password-hashing.md

* Update key-encryption-at-rest.md

* Update adding-model.md

* Update new-field.md

* Update validation.md

* Update nano-server.md

* Update your-first-mac-aspnet.md
2016-11-02 07:17:24 -10:00
Rick Anderson 753ace9345 xref problem (#2044)
* xref problem

* fix
2016-10-31 18:02:17 -10:00
Daniel Roth e9c1419175 Add docfx content 2016-10-28 10:35:15 -07:00