Ola Johansson
Ola Johansson
Just a FYI, seems like pluralize "Software" becomes "Softwares", and that is not correct as far as i know.
Have you seen the new inline editor from CKEditor .. really nice. http://nightly-v4.ckeditor.com/3429/samples/inlineall.html
Have you tried Meek with Chinese? I wanted to use it with it today but i only got jiberish (well, jiberish that wasn't chinese). it looks ok when you edit...
I was migrating from some old batch update tool and added some BulkUpdates. It worked fine for most table but then all of a sudden i was trying to update...
I can't figure out how to just omit these values? I.e if i don't know the change frequency or lastmod it would be nice to be able to just ignore...
Not sure how to fix this but this method. ``` csharp private static string IpFromXForwardedFor(HttpRequest request) { var forwardedFor = request.Headers["X-Forwarded-For"]; if (!string.IsNullOrEmpty(forwardedFor) && forwardedFor.Contains(",")) { forwardedFor = forwardedFor.Split(',').Last().Trim(); }...