Skip to content

Commit 1955694

Browse files
committed
Upgrade Docs to v4.0.11
1 parent 4827135 commit 1955694

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+11283
-153
lines changed

src/Docs/Docs.Logic/CategoryService.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System.Collections.Generic;
2-
using ServiceStack.Common.Extensions;
3-
using ServiceStack.ServiceInterface;
2+
using ServiceStack;
43

54
namespace Docs.Logic
65
{

src/Docs/Docs.Logic/Docs.Logic.csproj

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>Docs.Logic</RootNamespace>
1212
<AssemblyName>Docs.Logic</AssemblyName>
13-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
13+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
15+
<TargetFrameworkProfile />
1516
</PropertyGroup>
1617
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1718
<DebugSymbols>true</DebugSymbols>
@@ -32,28 +33,19 @@
3233
</PropertyGroup>
3334
<ItemGroup>
3435
<Reference Include="ServiceStack">
35-
<HintPath>..\..\packages\ServiceStack.3.9.63\lib\net35\ServiceStack.dll</HintPath>
36+
<HintPath>..\packages\ServiceStack.4.0.11\lib\net40\ServiceStack.dll</HintPath>
37+
</Reference>
38+
<Reference Include="ServiceStack.Client">
39+
<HintPath>..\packages\ServiceStack.Client.4.0.11\lib\net40\ServiceStack.Client.dll</HintPath>
3640
</Reference>
3741
<Reference Include="ServiceStack.Common">
38-
<HintPath>..\..\packages\ServiceStack.Common.3.9.63\lib\net35\ServiceStack.Common.dll</HintPath>
42+
<HintPath>..\packages\ServiceStack.Common.4.0.11\lib\net40\ServiceStack.Common.dll</HintPath>
3943
</Reference>
4044
<Reference Include="ServiceStack.Interfaces">
41-
<HintPath>..\..\packages\ServiceStack.Common.3.9.63\lib\net35\ServiceStack.Interfaces.dll</HintPath>
42-
</Reference>
43-
<Reference Include="ServiceStack.OrmLite">
44-
<HintPath>..\..\packages\ServiceStack.OrmLite.SqlServer.3.9.63\lib\net35\ServiceStack.OrmLite.dll</HintPath>
45-
</Reference>
46-
<Reference Include="ServiceStack.OrmLite.SqlServer">
47-
<HintPath>..\..\packages\ServiceStack.OrmLite.SqlServer.3.9.63\lib\net35\ServiceStack.OrmLite.SqlServer.dll</HintPath>
48-
</Reference>
49-
<Reference Include="ServiceStack.Redis">
50-
<HintPath>..\..\packages\ServiceStack.Redis.3.9.63\lib\net35\ServiceStack.Redis.dll</HintPath>
51-
</Reference>
52-
<Reference Include="ServiceStack.ServiceInterface">
53-
<HintPath>..\..\packages\ServiceStack.3.9.63\lib\net35\ServiceStack.ServiceInterface.dll</HintPath>
45+
<HintPath>..\packages\ServiceStack.Interfaces.4.0.11\lib\net40\ServiceStack.Interfaces.dll</HintPath>
5446
</Reference>
5547
<Reference Include="ServiceStack.Text">
56-
<HintPath>..\..\packages\ServiceStack.Text.3.9.63\lib\net35\ServiceStack.Text.dll</HintPath>
48+
<HintPath>..\packages\ServiceStack.Text.4.0.11\lib\net40\ServiceStack.Text.dll</HintPath>
5749
</Reference>
5850
<Reference Include="System" />
5951
<Reference Include="System.Core" />

src/Docs/Docs.Logic/Extensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using System.Text.RegularExpressions;
2-
using ServiceStack.Text;
2+
using ServiceStack;
33

44
namespace Docs.Logic
55
{

src/Docs/Docs.Logic/PageManager.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
using System.Collections.Generic;
33
using System.IO;
44
using System.Linq;
5-
using ServiceStack.Common.Extensions;
6-
using ServiceStack.ServiceHost;
7-
using ServiceStack.Text;
5+
using ServiceStack;
86

97
namespace Docs.Logic
108
{
@@ -36,7 +34,7 @@ public void Init(string filePath, string baseUrl)
3634
}
3735

3836
this.PageMap = new Dictionary<string, Page>(StringComparer.CurrentCultureIgnoreCase);
39-
Pages.Where(x => !x.FilePath.IsNullOrEmpty()).ForEach(x => PageMap[x.FilePath] = x);
37+
Pages.Where(x => !x.FilePath.IsNullOrEmpty()).Each(x => PageMap[x.FilePath] = x);
4038

4139
CategoriesMap = new Dictionary<string, List<Page>>(StringComparer.CurrentCultureIgnoreCase);
4240
foreach (var page in Pages)

src/Docs/Docs.Logic/PageService.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
using System.Collections.Generic;
33
using System.IO;
44
using System.Linq;
5-
using ServiceStack.ServiceClient.Web;
6-
using ServiceStack.ServiceInterface;
7-
using ServiceStack.Text;
5+
using ServiceStack;
86

97
namespace Docs.Logic
108
{

src/Docs/Docs.Logic/SearchService.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
using System;
22
using System.Collections.Generic;
3-
using ServiceStack.ServiceInterface;
4-
using ServiceStack.ServiceInterface.ServiceModel;
5-
using ServiceStack.Text;
3+
using ServiceStack;
64

75
namespace Docs.Logic
86
{

src/Docs/Docs.Logic/packages.config

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="ServiceStack" version="3.9.63" targetFramework="net35" />
4-
<package id="ServiceStack.Common" version="3.9.63" targetFramework="net35" />
5-
<package id="ServiceStack.OrmLite.SqlServer" version="3.9.63" targetFramework="net35" />
6-
<package id="ServiceStack.Redis" version="3.9.63" targetFramework="net35" />
7-
<package id="ServiceStack.Text" version="3.9.63" targetFramework="net35" />
3+
<package id="ServiceStack" version="4.0.11" targetFramework="net40" />
4+
<package id="ServiceStack.Client" version="4.0.11" targetFramework="net40" />
5+
<package id="ServiceStack.Common" version="4.0.11" targetFramework="net40" />
6+
<package id="ServiceStack.Interfaces" version="4.0.11" targetFramework="net40" />
7+
<package id="ServiceStack.Text" version="4.0.11" targetFramework="net40" />
88
</packages>

src/Docs/Docs.csproj

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<AppDesignerFolder>Properties</AppDesignerFolder>
1414
<RootNamespace>Docs</RootNamespace>
1515
<AssemblyName>Docs</AssemblyName>
16-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
16+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1717
<UseIISExpress>false</UseIISExpress>
1818
<FileUpgradeFlags>
1919
</FileUpgradeFlags>
@@ -24,6 +24,7 @@
2424
<IISExpressAnonymousAuthentication />
2525
<IISExpressWindowsAuthentication />
2626
<IISExpressUseClassicPipelineMode />
27+
<TargetFrameworkProfile />
2728
</PropertyGroup>
2829
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2930
<DebugSymbols>true</DebugSymbols>
@@ -43,42 +44,41 @@
4344
<WarningLevel>4</WarningLevel>
4445
</PropertyGroup>
4546
<ItemGroup>
46-
<Reference Include="ServiceStack">
47-
<HintPath>..\packages\ServiceStack.3.9.63\lib\net35\ServiceStack.dll</HintPath>
47+
<Reference Include="ServiceStack, Version=4.0.11.0, Culture=neutral, processorArchitecture=MSIL">
48+
<SpecificVersion>False</SpecificVersion>
49+
<HintPath>..\..\..\ServiceStack\src\ServiceStack\bin\Release\ServiceStack.dll</HintPath>
4850
</Reference>
49-
<Reference Include="ServiceStack.Common">
50-
<HintPath>..\packages\ServiceStack.Common.3.9.63\lib\net35\ServiceStack.Common.dll</HintPath>
51+
<Reference Include="ServiceStack.Client, Version=4.0.11.0, Culture=neutral, processorArchitecture=MSIL">
52+
<SpecificVersion>False</SpecificVersion>
53+
<HintPath>..\..\..\ServiceStack\src\ServiceStack\bin\Release\ServiceStack.Client.dll</HintPath>
5154
</Reference>
52-
<Reference Include="ServiceStack.Interfaces">
53-
<HintPath>..\packages\ServiceStack.Common.3.9.63\lib\net35\ServiceStack.Interfaces.dll</HintPath>
55+
<Reference Include="ServiceStack.Common, Version=4.0.11.0, Culture=neutral, processorArchitecture=MSIL">
56+
<SpecificVersion>False</SpecificVersion>
57+
<HintPath>..\..\..\ServiceStack\src\ServiceStack\bin\Release\ServiceStack.Common.dll</HintPath>
5458
</Reference>
55-
<Reference Include="ServiceStack.OrmLite">
56-
<HintPath>..\packages\ServiceStack.OrmLite.SqlServer.3.9.63\lib\net35\ServiceStack.OrmLite.dll</HintPath>
59+
<Reference Include="ServiceStack.Interfaces, Version=4.0.0.0, Culture=neutral, PublicKeyToken=e06fbc6124f57c43, processorArchitecture=MSIL">
60+
<SpecificVersion>False</SpecificVersion>
61+
<HintPath>..\..\..\ServiceStack\src\ServiceStack\bin\Release\ServiceStack.Interfaces.dll</HintPath>
5762
</Reference>
58-
<Reference Include="ServiceStack.OrmLite.SqlServer">
59-
<HintPath>..\packages\ServiceStack.OrmLite.SqlServer.3.9.63\lib\net35\ServiceStack.OrmLite.SqlServer.dll</HintPath>
60-
</Reference>
61-
<Reference Include="ServiceStack.Redis">
62-
<HintPath>..\packages\ServiceStack.Redis.3.9.63\lib\net35\ServiceStack.Redis.dll</HintPath>
63-
</Reference>
64-
<Reference Include="ServiceStack.ServiceInterface">
65-
<HintPath>..\packages\ServiceStack.3.9.63\lib\net35\ServiceStack.ServiceInterface.dll</HintPath>
66-
</Reference>
67-
<Reference Include="ServiceStack.Text">
68-
<HintPath>..\packages\ServiceStack.Text.3.9.63\lib\net35\ServiceStack.Text.dll</HintPath>
63+
<Reference Include="ServiceStack.Text, Version=4.0.11.0, Culture=neutral, processorArchitecture=MSIL">
64+
<SpecificVersion>False</SpecificVersion>
65+
<HintPath>..\..\..\ServiceStack\src\ServiceStack\bin\Release\ServiceStack.Text.dll</HintPath>
6966
</Reference>
7067
<Reference Include="System" />
7168
<Reference Include="System.Data" />
72-
<Reference Include="System.Core" />
7369
<Reference Include="System.Data.DataSetExtensions" />
74-
<Reference Include="System.Xml.Linq" />
70+
<Reference Include="System.Web.ApplicationServices" />
71+
<Reference Include="System.Web.DynamicData" />
72+
<Reference Include="System.Web.Entity" />
73+
<Reference Include="System.Web.Extensions" />
7574
<Reference Include="System.Drawing" />
7675
<Reference Include="System.Web" />
7776
<Reference Include="System.Xml" />
7877
<Reference Include="System.Configuration" />
78+
<Reference Include="System.Xml.Linq" />
7979
</ItemGroup>
8080
<ItemGroup>
81-
<Content Include="default.shtml" />
81+
<Content Include="Views\Shared\_Layout.shtml" />
8282
<Content Include="css\default.css" />
8383
<Content Include="css\styles.css" />
8484
<Content Include="Global.asax" />

src/Docs/Global.asax.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
using System;
2+
using System.Linq;
23
using Docs.Logic;
34
using Funq;
45
using ServiceStack;
56
using ServiceStack.Configuration;
6-
using ServiceStack.ServiceHost;
7-
using ServiceStack.WebHost.Endpoints;
7+
using ServiceStack.Formats;
88

99
namespace Docs
1010
{
@@ -27,10 +27,13 @@ public override void Configure(Container container)
2727
.Add<Search>("/search")
2828
.Add<Search>("/search/{Query}");
2929

30-
SetConfig(new EndpointHostConfig {
30+
SetConfig(new HostConfig {
3131
WebHostUrl = baseUrl, //replaces ~/ with Url
3232
MarkdownBaseType = typeof(CustomMarkdownPage), //set custom base for all Markdown pages
3333
});
34+
35+
var plugin = (MarkdownFormat)Plugins.First(x => x is MarkdownFormat);
36+
var page = plugin.FindByPathInfo("/about");
3437
}
3538
}
3639

File renamed without changes.

src/Docs/Web.config

Lines changed: 18 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,20 @@
11
<?xml version="1.0"?>
22
<configuration>
3-
<appSettings>
4-
<add key="WebHostUrl2" value="http://mono.servicestack.net/docs/" />
5-
<add key="WebHostUrl" value="http://localhost/docs/" />
6-
</appSettings>
7-
<system.web>
8-
<httpHandlers>
9-
<remove verb="*" path="*.asmx"/>
10-
<add path="*" type="ServiceStack.WebHost.Endpoints.ServiceStackHttpHandlerFactory, ServiceStack" verb="*"/>
11-
</httpHandlers>
12-
<compilation debug="true"/>
13-
</system.web>
14-
<system.codedom>
15-
<compilers>
16-
<compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
17-
<providerOption name="CompilerVersion" value="v3.5"/>
18-
<providerOption name="WarnAsError" value="false"/>
19-
</compiler>
20-
</compilers>
21-
</system.codedom>
22-
<system.webServer>
23-
<validation validateIntegratedModeConfiguration="false"/>
24-
<handlers>
25-
<add path="*" name="ServiceStack.Factory" type="ServiceStack.WebHost.Endpoints.ServiceStackHttpHandlerFactory, ServiceStack" verb="*" preCondition="integratedMode" resourceType="Unspecified" allowPathInfo="true"/>
26-
</handlers>
27-
</system.webServer>
28-
</configuration>
29-
3+
<appSettings>
4+
<add key="WebHostUrl2" value="http://mono.servicestack.net/docs/"/>
5+
<add key="WebHostUrl" value="http://localhost:5416/"/>
6+
</appSettings>
7+
<system.web>
8+
<httpHandlers>
9+
<add path="*" type="ServiceStack.HttpHandlerFactory, ServiceStack" verb="*"/>
10+
</httpHandlers>
11+
<compilation debug="true" targetFramework="4.0"/>
12+
<pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
13+
</system.web>
14+
<system.webServer>
15+
<validation validateIntegratedModeConfiguration="false"/>
16+
<handlers>
17+
<add path="*" name="ServiceStack.Factory" type="ServiceStack.HttpHandlerFactory, ServiceStack" verb="*" preCondition="integratedMode" resourceType="Unspecified" allowPathInfo="true"/>
18+
</handlers>
19+
</system.webServer>
20+
</configuration>

src/Docs/examples/servicestack-examples.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,29 @@ for twitter updates.
88

99
A live demo and tutorials are available at the following locations:
1010

11-
### [Backbone.js TODO app with REST and Redis backend](http://servicestack.net/Backbone.Todos/)
12-
[![Backbone REST and Redis TODOs](http://servicestack.net/showcase/img/todos-400x350.png)](http://servicestack.net/Backbone.Todos/)
11+
### [Backbone.js TODO app with REST and Redis backend](http://mono.servicestack.net/Backbone.Todos/)
12+
[![Backbone REST and Redis TODOs](http://mono.servicestack.net/showcase/img/todos-400x350.png)](http://mono.servicestack.net/Backbone.Todos/)
1313

14-
### [Creating a Hello World Web service from scratch](http://servicestack.net/ServiceStack.Hello/)
15-
[![ServiceStacks Hello, World!](http://servicestack.net/showcase/img/hello-400x350.png)](http://servicestack.net/ServiceStack.Hello/)
14+
### [Creating a Hello World Web service from scratch](http://mono.servicestack.net/ServiceStack.Hello/)
15+
[![ServiceStacks Hello, World!](http://mono.servicestack.net/showcase/img/hello-400x350.png)](http://mono.servicestack.net/ServiceStack.Hello/)
1616

17-
### [GitHub-like browser to manage remote filesystem over REST](http://servicestack.net/RestFiles/)
18-
[![GitHub-like REST Files](http://servicestack.net/showcase/img/restfiles-400x350.png)](http://servicestack.net/RestFiles/)
17+
### [GitHub-like browser to manage remote filesystem over REST](http://mono.servicestack.net/RestFiles/)
18+
[![GitHub-like REST Files](http://mono.servicestack.net/showcase/img/restfiles-400x350.png)](http://mono.servicestack.net/RestFiles/)
1919

20-
### [Creating a StackOverflow-like app in Redis](http://servicestack.net/RedisStackOverflow/)
21-
[![Redis StackOverflow](http://servicestack.net/showcase/img/redisstackoverflow-400x350.png)](http://servicestack.net/RedisStackOverflow/)
20+
### [Creating a StackOverflow-like app in Redis](http://mono.servicestack.net/RedisStackOverflow/)
21+
[![Redis StackOverflow](http://mono.servicestack.net/showcase/img/redisstackoverflow-400x350.png)](http://mono.servicestack.net/RedisStackOverflow/)
2222

23-
### [Complete REST Web service example](http://servicestack.net/ServiceStack.MovieRest/)
24-
[![REST at the Movies!](http://servicestack.net/showcase/img/movierest-400x350.png)](http://servicestack.net/ServiceStack.MovieRest/)
23+
### [Complete REST Web service example](http://mono.servicestack.net/ServiceStack.MovieRest/)
24+
[![REST at the Movies!](http://mono.servicestack.net/showcase/img/movierest-400x350.png)](http://mono.servicestack.net/ServiceStack.MovieRest/)
2525

26-
### [Calling Web Services with Ajax](http://servicestack.net/ServiceStack.Examples.Clients/)
27-
[![Ajax Example](http://servicestack.net/showcase/img/ajaxexample-400x350.png)](http://servicestack.net/ServiceStack.Examples.Clients/)
26+
### [Calling Web Services with Ajax](http://mono.servicestack.net/ServiceStack.Examples.Clients/)
27+
[![Ajax Example](http://mono.servicestack.net/showcase/img/ajaxexample-400x350.png)](http://mono.servicestack.net/ServiceStack.Examples.Clients/)
2828

2929
### Other examples
3030
* [Calling Web Services with Mono Touch](http://www.servicestack.net/monotouch/remote-info/)
31-
* [Calling Web Services using Silverlight](http://servicestack.net/ServiceStack.Examples.Clients/Silverlight.htm)
32-
* [Calling SOAP 1.1 Web Service Examples](http://servicestack.net/ServiceStack.Examples.Clients/Soap11.aspx)
33-
* [Calling SOAP 1.2 Web Service Examples](http://servicestack.net/ServiceStack.Examples.Clients/Soap12.aspx)
31+
* [Calling Web Services using Silverlight](http://mono.servicestack.net/ServiceStack.Examples.Clients/Silverlight.htm)
32+
* [Calling SOAP 1.1 Web Service Examples](http://mono.servicestack.net/ServiceStack.Examples.Clients/Soap11.aspx)
33+
* [Calling SOAP 1.2 Web Service Examples](http://mono.servicestack.net/ServiceStack.Examples.Clients/Soap12.aspx)
3434

3535
_All live examples hosted on CentOS/Nginx/FastCGI/Mono_
3636

src/Docs/framework/caching-options.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ for the following cache providers:
88

99
# Live Example and code
1010

11-
A live demo of the ICacheClient is available in [The ServiceStack.Northwind's example project](http://servicestack.net/ServiceStack.Northwind/). Here are some requests to cached services:
11+
A live demo of the ICacheClient is available in [The ServiceStack.Northwind's example project](http://mono.servicestack.net/ServiceStack.Northwind/). Here are some requests to cached services:
1212

13-
* [/customers](http://servicestack.net/ServiceStack.Northwind/cached/customers)
14-
* [/customers/ALFKI](http://servicestack.net/ServiceStack.Northwind/cached/customers/ALFKI)
15-
* [/customers/ALFKI/orders](http://servicestack.net/ServiceStack.Northwind/cached/customers/ALFKI/orders)
13+
* [/customers](http://mono.servicestack.net/ServiceStack.Northwind/cached/customers)
14+
* [/customers/ALFKI](http://mono.servicestack.net/ServiceStack.Northwind/cached/customers/ALFKI)
15+
* [/customers/ALFKI/orders](http://mono.servicestack.net/ServiceStack.Northwind/cached/customers/ALFKI/orders)
1616

1717
Which are simply existing web services wrapped using **ICacheClient** that are contained in [CachedServices.cs](https://github.com/ServiceStack/ServiceStack.Examples/blob/master/src/ServiceStack.Northwind/ServiceStack.Northwind.ServiceInterface/CachedServices.cs)
1818

src/Docs/framework/csv-format.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ This is how the above web service output looks when opened up in [google docs](h
5858

5959
Alternative in following with the HTTP specification you can also specify content-type `"text/csv"` in the *Accept* header of your HttpClient, e.g:
6060

61-
var httpReq = (HttpWebRequest)WebRequest.Create("http://servicestack.net/ServiceStack.MovieRest/movies");
61+
var httpReq = (HttpWebRequest)WebRequest.Create("http://mono.servicestack.net/ServiceStack.MovieRest/movies");
6262
httpReq.Accept = "text/csv";
6363
var csv = new StreamReader(httpReq.GetResponse().GetResponseStream()).ReadToEnd();
6464

src/Docs/framework/json-report-format.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44

55
These examples are simply links to existing ServiceStack web services, which based on your browsers user-agent (i.e. Accept: 'text/html') provides this HTML format instead of the other serialization formats.
66

7-
- **Northwind Database: ** [All Customers](http://servicestack.net/ServiceStack.Northwind/customers), [Customer Detail](http://servicestack.net/ServiceStack.Northwind/customers/ALFKI), [Customer Orders](http://servicestack.net/ServiceStack.Northwind/orders)
8-
- **RedisStackOverflow: ** [Latest Questions](http://servicestack.net/RedisStackOverflow/questions) and [Site Stats](http://servicestack.net/RedisStackOverflow/stats)
9-
- **RestMovies: ** [All Movie listings](http://servicestack.net/ServiceStack.MovieRest/movies)
10-
- **RestFiles: ** [Root Directory](http://servicestack.net/RestFiles/files)
7+
- **Northwind Database: ** [All Customers](http://mono.servicestack.net/ServiceStack.Northwind/customers), [Customer Detail](http://mono.servicestack.net/ServiceStack.Northwind/customers/ALFKI), [Customer Orders](http://mono.servicestack.net/ServiceStack.Northwind/orders)
8+
- **RedisStackOverflow: ** [Latest Questions](http://mono.servicestack.net/RedisStackOverflow/questions) and [Site Stats](http://mono.servicestack.net/RedisStackOverflow/stats)
9+
- **RestMovies: ** [All Movie listings](http://mono.servicestack.net/ServiceStack.MovieRest/movies)
10+
- **RestFiles: ** [Root Directory](http://mono.servicestack.net/RestFiles/files)
1111

12-
[![HTML5 Report Format](http://servicestack.net/img/HTML5Format.png)](http://servicestack.net/ServiceStack.Northwind/customers/ALFKI)
12+
[![HTML5 Report Format](http://mono.servicestack.net/img/HTML5Format.png)](http://mono.servicestack.net/ServiceStack.Northwind/customers/ALFKI)
1313

1414
To see it in action, **view the source** in your browser. Webkit and Firefox users can simply go to the url below:
1515

16-
view-source:http://servicestack.net/ServiceStack.Northwind/customers/ALFKI
16+
view-source:http://mono.servicestack.net/ServiceStack.Northwind/customers/ALFKI
1717

1818
Note: To view the web services in a different format simply append **?format=[json|xml|html|csv|jsv]** to the query string.
1919

0 commit comments

Comments
 (0)