From 0fd9ae8de309768e9e4fdb2c013902aaed76ccd0 Mon Sep 17 00:00:00 2001 From: benjaminramey Date: Thu, 1 Oct 2020 21:10:52 -0500 Subject: [PATCH] Update tags to not use periods --- .../09/01/replacing-newline-characters-in-vb-net-strings.md | 2 +- ...ting-a-hexadecimal-color-to-a-system-drawing-color-object.md | 2 +- ...ires-from-asp-net-request-object-always-datetime-minvalue.md | 2 +- src/posts/2012/07/27/group-list-into-sub-lists-by-index.md | 2 +- src/posts/2012/10/12/custom-error-pages-with-sitefinity.md | 2 +- ...nverting-an-interface-expression-to-a-concrete-expression.md | 2 +- ...-3-0-redirect-to-accountlogin-with-windows-authentication.md | 2 +- .../2014/03/07/nservicebus-with-entityframework-persisters.md | 2 +- ...5-with-forms-authentication-and-group-based-authorization.md | 2 +- src/posts/2015/09/03/permutations-with-iterators-in-csharp.md | 2 +- src/posts/2015/12/02/working-with-x509-certificates-in-net.md | 2 +- .../2016/02/25/you-cant-subscribe-to-ievent-with-nservicebus.md | 2 +- .../04/11/owin-oauth-integration-testing-with-bearer-token.md | 2 +- ...astle-windsor-typedfactoryfacility-and-property-injection.md | 2 +- src/posts/2020/05/27/iterating-all-catalog-metaobjects.md | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/posts/2009/09/01/replacing-newline-characters-in-vb-net-strings.md b/src/posts/2009/09/01/replacing-newline-characters-in-vb-net-strings.md index c5d6a2f..7d0c1ba 100644 --- a/src/posts/2009/09/01/replacing-newline-characters-in-vb-net-strings.md +++ b/src/posts/2009/09/01/replacing-newline-characters-in-vb-net-strings.md @@ -4,7 +4,7 @@ title: "Replacing newline characters in VB.NET strings" date: 2012-06-12 description: "Replacing newline characters in VB.NET strings" categories: [programming] -tags: [vb.net] +tags: [vb-net] --- I’m not very familiar (which I am actually very happy for!) with VB.NET and so I had a hard time figuring out how to trim newline characters from a string in a Reporting Services report I was working on. diff --git a/src/posts/2009/09/24/converting-a-hexadecimal-color-to-a-system-drawing-color-object.md b/src/posts/2009/09/24/converting-a-hexadecimal-color-to-a-system-drawing-color-object.md index c8b6caa..8d994a1 100644 --- a/src/posts/2009/09/24/converting-a-hexadecimal-color-to-a-system-drawing-color-object.md +++ b/src/posts/2009/09/24/converting-a-hexadecimal-color-to-a-system-drawing-color-object.md @@ -4,7 +4,7 @@ title: "Converting a Hexadecimal Color to a System.Drawing.Color Object" date: 2009-09-24 description: "Converting a Hexadecimal Color to a System.Drawing.Color Object" categories: [programming] -tags: [.net] +tags:[dotnet] --- I try to avoid setting styles in my code as much as possible. However, I ran across a case using a DevExpress PageControl control where there was no possible way to set a certain border by using CSS. This is because DevExpress wisely (read sarcasm) uses “border-color: #whatever !important” in the element’s style attribute. So, there is no way to override that style except by setting it on the control in code (or your aspx page). diff --git a/src/posts/2010/10/12/cookie-expires-from-asp-net-request-object-always-datetime-minvalue.md b/src/posts/2010/10/12/cookie-expires-from-asp-net-request-object-always-datetime-minvalue.md index c373db1..3c8a08a 100644 --- a/src/posts/2010/10/12/cookie-expires-from-asp-net-request-object-always-datetime-minvalue.md +++ b/src/posts/2010/10/12/cookie-expires-from-asp-net-request-object-always-datetime-minvalue.md @@ -4,7 +4,7 @@ title: "Cookie.Expires from ASP.NET Request Object Always DateTime.MinValue" date: 2010-10-12 description: "Cookie.Expires from ASP.NET Request Object Always DateTime.MinValue" categories: [programming] -tags: [.net,asp.net] +tags:[dotnet,asp-net] --- I’ve been working on a problem today involving cookies with one of our web applications. The cookie is keeping track of a user’s authenticated session and it’s timing people out too soon. So, I was checking the expiration time of the cookie coming in from the browser and it was returning 1/1/0001 12:00AM every time. I thought this might be the source of my problem, but resetting the cookie and the expiration time did not help the next round-trip to the server. The cookie still read the DateTime.MinValue time. diff --git a/src/posts/2012/07/27/group-list-into-sub-lists-by-index.md b/src/posts/2012/07/27/group-list-into-sub-lists-by-index.md index b3f45db..78c4ea1 100644 --- a/src/posts/2012/07/27/group-list-into-sub-lists-by-index.md +++ b/src/posts/2012/07/27/group-list-into-sub-lists-by-index.md @@ -4,7 +4,7 @@ title: "Group List Into Sub-lists by Index" date: 2012-07-27 description: "Group List Into Sub-lists by Index" categories: [programming] -tags: [.net] +tags:[dotnet] --- ## Problem Everyone once-in-a-while I need to take a flat list (or array, or whatever) of items and divide it up into chunks. It doesn’t have to be in any real order, necessarily, it just has to be in groups of two, three or four or however many items. Most recently, I needed this to divide up a list of blog items into chunks of four to display in sets of “pages” that a user would page through with Javascript. diff --git a/src/posts/2012/10/12/custom-error-pages-with-sitefinity.md b/src/posts/2012/10/12/custom-error-pages-with-sitefinity.md index 4a623cc..72cce37 100644 --- a/src/posts/2012/10/12/custom-error-pages-with-sitefinity.md +++ b/src/posts/2012/10/12/custom-error-pages-with-sitefinity.md @@ -4,7 +4,7 @@ title: "Custom Error Pages with Sitefinity" date: 2012-10-12 description: "Custom Error Pages with Sitefinity" categories: [programming] -tags: [sitefinity,.net] +tags: [sitefinity,dotnet] --- I had a considerably hard time today getting just a simple 404 error page (custom) to show up in all cases for a Sitefinity installation. It probably has nothing to do with Sitefinity and a lot more to do with my lack of experience doing this simple task. But, anyhow, here are my findings. diff --git a/src/posts/2013/01/23/converting-an-interface-expression-to-a-concrete-expression.md b/src/posts/2013/01/23/converting-an-interface-expression-to-a-concrete-expression.md index c7117e6..6f086b3 100644 --- a/src/posts/2013/01/23/converting-an-interface-expression-to-a-concrete-expression.md +++ b/src/posts/2013/01/23/converting-an-interface-expression-to-a-concrete-expression.md @@ -4,7 +4,7 @@ title: "Converting an Interface Expression to a Concrete Expression" date: 2013-01-23 description: "Converting an Interface Expression to a Concrete Expression" categories: [programming] -tags: [.net] +tags:[dotnet] --- I had a case recently where I needed to convert a LINQ expression of the type of an interface and I needed to convert it to be based on a concrete implementation of that interface. I came up with the following solution, using an ExpressionVisitor and a simple helper method. diff --git a/src/posts/2013/04/23/asp-net-mvc-3-0-redirect-to-accountlogin-with-windows-authentication.md b/src/posts/2013/04/23/asp-net-mvc-3-0-redirect-to-accountlogin-with-windows-authentication.md index c245106..624789e 100644 --- a/src/posts/2013/04/23/asp-net-mvc-3-0-redirect-to-accountlogin-with-windows-authentication.md +++ b/src/posts/2013/04/23/asp-net-mvc-3-0-redirect-to-accountlogin-with-windows-authentication.md @@ -4,6 +4,6 @@ title: "ASP.NET MVC 3.0 Redirect to Account/Login with Windows Authentication" date: 2013-04-23 description: "ASP.NET MVC 3.0 Redirect to Account/Login with Windows Authentication" categories: [programming] -tags: [.net,asp.net,mvc] +tags:[dotnet,asp-net,mvc] --- [ASP.NET MVC 3 Windows Authentication problem – redirects to Account/Login](http://www.benramey.com/2013/04/23/asp-net-mvc-3-0-redirect-to-accountlogin-with-windows-authentication/#) diff --git a/src/posts/2014/03/07/nservicebus-with-entityframework-persisters.md b/src/posts/2014/03/07/nservicebus-with-entityframework-persisters.md index 55348dc..2e8c464 100644 --- a/src/posts/2014/03/07/nservicebus-with-entityframework-persisters.md +++ b/src/posts/2014/03/07/nservicebus-with-entityframework-persisters.md @@ -4,7 +4,7 @@ title: "NServiceBus with EntityFramework Persisters" date: 2014-03-07 description: "NServiceBus with EntityFramework Persisters" categories: [programming] -tags: [.net,nservicebus] +tags:[dotnet,nservicebus] --- ## Update 1/13/2016 diff --git a/src/posts/2014/10/20/active-directory-authentication-in-asp-net-mvc-5-with-forms-authentication-and-group-based-authorization.md b/src/posts/2014/10/20/active-directory-authentication-in-asp-net-mvc-5-with-forms-authentication-and-group-based-authorization.md index b58ea8b..c58afac 100644 --- a/src/posts/2014/10/20/active-directory-authentication-in-asp-net-mvc-5-with-forms-authentication-and-group-based-authorization.md +++ b/src/posts/2014/10/20/active-directory-authentication-in-asp-net-mvc-5-with-forms-authentication-and-group-based-authorization.md @@ -4,7 +4,7 @@ title: "Active Directory Authentication in ASP.NET MVC 5 with Forms Authenticat date: 2014-10-20 9:03:00 description: "How to integrate MVC authorization attributes with Active Directory." categories: [programming] -tags: [mvc,asp.net,active-directory] +tags: [mvc,asp-net,active-directory] --- I know that blog post title is sure a mouth-full, but it describes the whole problem I was trying to solve in a recent project. diff --git a/src/posts/2015/09/03/permutations-with-iterators-in-csharp.md b/src/posts/2015/09/03/permutations-with-iterators-in-csharp.md index 049e185..d1fd95c 100644 --- a/src/posts/2015/09/03/permutations-with-iterators-in-csharp.md +++ b/src/posts/2015/09/03/permutations-with-iterators-in-csharp.md @@ -4,7 +4,7 @@ title: "Permutations with Iterators in C#" date: 2015-09-03 12:27:00 description: "Link to great code for generator permutations of objects with iterators" categories: [programming] -tags: [.net] +tags:[dotnet] --- I recently ran across a need to generate all permutations of an array of objects diff --git a/src/posts/2015/12/02/working-with-x509-certificates-in-net.md b/src/posts/2015/12/02/working-with-x509-certificates-in-net.md index 060ad82..5795246 100644 --- a/src/posts/2015/12/02/working-with-x509-certificates-in-net.md +++ b/src/posts/2015/12/02/working-with-x509-certificates-in-net.md @@ -4,7 +4,7 @@ title: "Working with x.509 Certificates in .NET" date: 2015-12-02 16:35:00 description: "Link to helpful article on working with certificates in Windows and .NET" categories: [programming] -tags: [.net,certificates] +tags:[dotnet,certificates] --- I found a lot of very helpful details about certificate storage and usage in Windows and diff --git a/src/posts/2016/02/25/you-cant-subscribe-to-ievent-with-nservicebus.md b/src/posts/2016/02/25/you-cant-subscribe-to-ievent-with-nservicebus.md index fb22926..8197d9c 100644 --- a/src/posts/2016/02/25/you-cant-subscribe-to-ievent-with-nservicebus.md +++ b/src/posts/2016/02/25/you-cant-subscribe-to-ievent-with-nservicebus.md @@ -4,7 +4,7 @@ title: "You Can't Subscribe to IEvent with NServiceBus" date: 2016-02-25 15:56:00 description: "The problems with trying to subscribe to IEvent with NServiceBus" categories: [programming] -tags: [.net,nservicebus] +tags:[dotnet,nservicebus] --- The reason you might want to subscribe to `IEvent` is pretty straightforward. I diff --git a/src/posts/2016/04/11/owin-oauth-integration-testing-with-bearer-token.md b/src/posts/2016/04/11/owin-oauth-integration-testing-with-bearer-token.md index f38b329..e696aac 100644 --- a/src/posts/2016/04/11/owin-oauth-integration-testing-with-bearer-token.md +++ b/src/posts/2016/04/11/owin-oauth-integration-testing-with-bearer-token.md @@ -4,7 +4,7 @@ title: "OWIN Integration Testing with OAuth Bearer Tokens" date: 2016-04-11 13:34:00 description: "How to generate an OAuth bearer token to use with OWIN integration tests." categories: [programming] -tags: [owin,.net] +tags: [owin,dotnet] --- ## Situation diff --git a/src/posts/2016/08/24/castle-windsor-typedfactoryfacility-and-property-injection.md b/src/posts/2016/08/24/castle-windsor-typedfactoryfacility-and-property-injection.md index 1fc61b7..a3b4f9d 100644 --- a/src/posts/2016/08/24/castle-windsor-typedfactoryfacility-and-property-injection.md +++ b/src/posts/2016/08/24/castle-windsor-typedfactoryfacility-and-property-injection.md @@ -4,7 +4,7 @@ title: "Castle.Windsor TypedFactoryFacility and Unexpected Property Injection B date: 2016-08-24 12:37:00 description: "Interesting (and unexpected) behavior of Windsor's property injection when using TypedFactoryFacility." categories: [programming] -tags: [.net,castle-windsor] +tags:[dotnet,castle-windsor] --- I finally got to the bottom of an issue today that came down to the way Castle.Windsor diff --git a/src/posts/2020/05/27/iterating-all-catalog-metaobjects.md b/src/posts/2020/05/27/iterating-all-catalog-metaobjects.md index 229ea3d..6744550 100644 --- a/src/posts/2020/05/27/iterating-all-catalog-metaobjects.md +++ b/src/posts/2020/05/27/iterating-all-catalog-metaobjects.md @@ -4,7 +4,7 @@ title: "Iterating All EPiServer Catalog MetaObjects" date: 2020-05-27 description: "C# iterators to walk through all EPiServer catalog node and entry content meta objects." categories: [programming] -tags: [episerver,csharp,.net] +tags: [episerver,csharp,dotnet] --- If you're maintaining an e-commerce-enabled site in EPiServer and you're using the built-in catalog, then