Commit Graph
7768 Commits
Author SHA1 Message Date
Sebastien Ros 5cac1d526c Adding PageSize property to blogs 2014-04-28 13:23:03 -07:00
Sebastien Ros fcb29cbf9d Merge branch '1.x' of https://git01.codeplex.com/orchard into 1.x 2014-04-28 13:21:58 -07:00
Bertrand Le Roy b99e4201c8 Workflows Timer missing a category, Workflows moved to Workflows category 2014-04-28 10:24:24 -07:00
Sebastien Ros 5e19b7176b Adding rss endpoint for tagged content items 2014-04-24 12:30:43 -07:00
Sebastien Ros 2dc16c9e0a Merge branch '1.8.x' into 1.x 2014-04-23 10:49:15 -07:00
Sebastien Ros 590a72aad9 Fixing Rsd constraint 2014-04-23 10:48:59 -07:00
Sebastien Ros 485175dc96 Merge branch '1.8.x' into 1.x 2014-04-22 16:40:33 -07:00
Sebastien Ros 724fc16459 Fixing Rsd routes 2014-04-22 16:40:06 -07:00
Sebastien Ros 6458ad2db6 Removing TypeScript compilation on build
Introduces some errors preventing Orchard to start.
The errors need to be fixed first.
2014-04-22 16:39:57 -07:00
Sebastien Ros 5365d329fc Merge branch '1.8.x' into 1.x 2014-04-21 16:01:27 -07:00
Sebastien Ros d221962870 #20648: Fixing default transaction isolation level
Work Item: 20648
2014-04-21 16:00:13 -07:00
Sebastien Ros 5f0df3ea38 Releasing DataCacheFactory on retries 2014-04-21 15:51:17 -07:00
Nicholas Mayne 8d329324e1 Fixing module.txt text for workflows in Roles. 2014-04-21 22:18:35 +01:00
Sebastien Ros 43712d396c Merge branch '1.8.x' into 1.x 2014-04-19 15:20:07 -07:00
Sebastien Ros 8346a08f95 Making archive routes case insensitive 2014-04-19 15:19:46 -07:00
Sebastien Ros b714088187 Merge branch '1.8.x' into 1.x 2014-04-19 14:49:31 -07:00
Sebastien Ros f41132b16a Improving route based constraints
The IArchiveConstraint is a singleton as the routes are singletons too.
However the path resolution is per tenant, and when accessing archive
pages where lots of links are constructed simultaneously there are
collisions and DataReader/Connections failures. The solution is to use
the IAliasHolder which is also a singleton and doesn't make any query.
2014-04-19 14:49:04 -07:00
Sebastien Ros 1916a3c351 Fixing unit tests 2014-04-18 17:05:18 -07:00
Sebastien Ros c1ce98f2a1 Merge branch '1.8.x' into 1.x 2014-04-18 16:11:46 -07:00
Sebastien Ros 4cea65c699 Fixing Azure Output Cache
This time I asked the Azure team how to use it correctly.
2014-04-18 16:10:42 -07:00
Sebastien Ros 360bd8dd4f Externalizing AliasUpdater to a feature 2014-04-17 22:54:19 -07:00
Sebastien Ros 0216d42060 Merge branch '1.8.x' into 1.x 2014-04-17 22:53:09 -07:00
Sebastien Ros ebf9edebcc Reverting AliasUpdater changes
Background tasks can't be configured
2014-04-17 22:51:31 -07:00
Sebastien Ros 6fc5d7d777 Fixing component name in configs 2014-04-17 20:27:58 -07:00
Sebastien Ros dfb87793e1 Moving timers to its own feature 2014-04-17 15:37:24 -07:00
Sebastien Ros 995806bdde Merge branch '1.8.x' into 1.x 2014-04-17 15:20:32 -07:00
Sebastien Ros 30aeb54fd3 #20213: Implementing retry logic
Work Item: 20213
2014-04-17 15:20:09 -07:00
Sebastien Ros 95a2f5be1f Merge branch '1.8.x' into 1.x 2014-04-17 13:22:29 -07:00
Sebastien Ros 509c694d4b #20614: Fixing cache invalidation between browsers
One browser with different headers would invalidate
all saved versions for a page, so two clients could
be in a position not to get a cached version anytime
if requests were alternated.

Chrome creates a cache entry, IE creates a cache entry and
delete all others, Chrome comes back deletes all entries, IE
comes back and has no entries.

Work Item: 20614
2014-04-17 13:18:47 -07:00
Sebastien Ros e5d89ea1fb Allowing AliasUpdater to be disabled
AliasUpdater is only useful for farms
2014-04-17 12:52:03 -07:00
Sebastien Ros fad2843a43 Loading Host configs in order
Sites.config is a fallback if Sites.{tenant}.config is not found
2014-04-17 12:51:32 -07:00
Sebastien Ros e10aa37620 Improving path resolution performance 2014-04-17 12:50:57 -07:00
Sebastien Ros 2432b7f326 Fixing invalid BBcode filter state 2014-04-17 12:50:09 -07:00
Sebastien Ros 3d6ae2846c Removing duplicate using 2014-04-17 12:49:03 -07:00
Sebastien Ros e9fd66a5af Adding example to configure background interval 2014-04-17 12:48:18 -07:00
Sebastien Ros ff20eb3124 Implementing comments notifications 2014-04-16 10:32:19 -07:00
Sebastien Ros dd203b3edf Fixing WarmupHttpModule version 2014-04-15 15:06:03 -07:00
Sebastien Ros 4edfd1cbf5 Adding Database Output Cache feature 2014-04-14 15:37:30 -07:00
Sebastien Ros 11d1aa0a57 Fixing cache admin view 2014-04-10 18:21:38 -07:00
Sebastien Ros cfacfaabab Merge branch '1.8.x' into 1.x 2014-04-10 14:39:30 -07:00
Sebastien Ros 499d2ec4c4 Fixing reference to System.Net.Http 2014-04-10 14:36:12 -07:00
Sebastien Ros 302b1f3540 Adding IgnoreNoCache setting to OutputCache
This setting lets a website ignore "no-cache" requests from clients.
This is usually done to force a refresh of a cached value, but this could
also lead to unnecessary load as Orchard already invalidates its cache
automatically (based on tags) or it could also be used by DDOS attacks.

Also remove the "browser" ASP.NET setting as it could create too many
entries in kernel cache.

Work Item: 20614
2014-04-10 14:35:08 -07:00
Sebastien Ros 5bc6b74395 #20608: Fixing Super User update
Work Item: 20608
2014-04-08 18:09:21 -07:00
Sebastien Ros dad8835196 Improving support of huge amount of content items 2014-04-03 18:36:14 -07:00
Sebastien Ros d28f739127 Using SqlServer 2012 dialect when possible
Automatically used on Sql Azure, or by adding
";Dialect=MsSql2012Dialect" in the connection string
2014-04-03 18:13:45 -07:00
Sebastien Ros a7c2bab4e8 Renaming Windows Azure to Microsoft Azure 2014-04-01 17:10:25 -07:00
Sebastien Ros 4434e55837 Fixing Ms Open Technologies url 2014-04-01 17:04:08 -07:00
Sebastien Ros 782012849a Using the blog's description in RSS feeds 2014-04-01 15:50:41 -07:00
Sebastien Ros 6bee52e950 Using the blog's description in RSS feeds 2014-04-01 15:49:26 -07:00
Sebastien Ros 9dcb790d27 #20586: Fixing Form Submitted activity
Work Item: 20586
1.8
2014-03-29 10:48:11 -07:00