Skip to content

Commit f27bc18

Browse files
committed
remove refs to validation.web-app.io
1 parent d3f0fde commit f27bc18

4 files changed

Lines changed: 12 additions & 13 deletions

File tree

MyApp/_pages/dotnet-tool.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,11 +138,11 @@ Options:
138138
### Add/Update ServiceStack References
139139

140140
This shows us we can Add a ServiceStack Reference with `x <lang> <baseurl>` which will let us create a TypeScript Reference
141-
to the new [World Validation](/world-validation) App using its `ts` file extension alias:
141+
to the new [Blazor Vue App](https://blazor-vue.web-templates.io) using its `ts` file extension alias:
142142

143143

144144
:::sh
145-
x ts http://validation.web-app.io
145+
x ts https://blazor-vue.web-templates.io
146146
:::
147147

148148
Output:
@@ -153,7 +153,7 @@ Saved to: dtos.ts
153153
Or create a C# ServiceStack Reference with:
154154

155155
:::sh
156-
x cs http://validation.web-app.io
156+
x cs https://blazor-vue.web-templates.io
157157
:::
158158

159159
Output:

MyApp/_pages/netcore-razor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ With this feature we can use a `_id` directory name to declare an `id` variable
8282

8383
This will let you navigate to the `edit.cshtml` page directly to edit a contact using the ideal "pretty url" we want:
8484

85-
- [/contacts/1/edit](http://validation.web-app.io/server-razor/contacts/1/edit)
85+
- /contacts/1/edit
8686

8787
Placeholders can be on both directory or file names, e.g:
8888

MyApp/_pages/web-tool.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,15 +115,15 @@ Options:
115115
### Add/Update ServiceStack References
116116

117117
This shows us we can Add a ServiceStack Reference with `web <lang> <baseurl>` which will let us create a TypeScript Reference
118-
to the new [World Validation](/world-validation) App using its `ts` file extension alias:
118+
to the new [Blazor Vue App](https://blazor-vue.web-templates.io) using its `ts` file extension alias:
119119

120-
$ web ts http://validation.web-app.io
120+
$ web ts https://blazor-vue.web-templates.io
121121

122122
Saved to: dtos.ts
123123

124124
Or create a C# ServiceStack Reference with:
125125

126-
$ web cs http://validation.web-app.io
126+
$ web cs https://blazor-vue.web-templates.io
127127

128128
Saved to: dtos.cs
129129

MyApp/_pages/world-validation.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ As of this writing there **4 different server HTML** generated strategies that u
1717

1818
<h4 class="mt-8 text-center">
1919
View Source on GitHub <a href="https://github.com/NetCoreApps/Validation">NetCoreApps/Validation</a> -
20-
Live Demo <a href="http://validation.web-app.io">validation.web-app.io</a>
2120
</h4>
2221

2322
### Server Rendered HTML UIs
@@ -66,10 +65,10 @@ Typed Request/Response Service Contracts including Data and DTO models that util
6665

6766
Each UI implements 4 different screens which are linked from:
6867

69-
- [Login Page](http://validation.web-app.io/login-links) - Sign In to ServiceStack's built-in Username/Password Credentials Auth Provider
70-
- [Registration Page](http://validation.web-app.io/register-links) - Calling ServiceStack's built-in `/register` Service to register a new User
71-
- [Contacts Page](http://validation.web-app.io/contact-links) - Contacts Form to Add a new Contact and view list of existing contacts
72-
- [Edit Contact Page](http://validation.web-app.io/contact-edit-links) - Edit Contact Form
68+
- [Login Page](https://github.com/NetCoreApps/Validation/blob/master/world/wwwroot/login-links.html) - Sign In to ServiceStack's built-in Username/Password Credentials Auth Provider
69+
- [Registration Page](https://github.com/NetCoreApps/Validation/blob/master/world/wwwroot/register-links.html) - Calling ServiceStack's built-in `/register` Service to register a new User
70+
- [Contacts Page](https://github.com/NetCoreApps/Validation/blob/master/world/wwwroot/contact-links.html) - Contacts Form to Add a new Contact and view list of existing contacts
71+
- [Edit Contact Page](https://github.com/NetCoreApps/Validation/blob/master/world/wwwroot/contact-edit-links.html) - Edit Contact Form
7372

7473
### Shared Error Handling Concepts
7574

@@ -218,7 +217,7 @@ that remains consistent is the way to call ServiceStack Services and handle erro
218217
The remaining client implementations show that whilst the server controls require the least code, if you need custom markup it's much easier
219218
to render the initial markup once, then use `bootstrapForm()` to bind any validation errors and handle the ajax form submissions. It's especially
220219
valuable when you need to update a form where the same markup can be populated by just assigning the `model` property as done in the
221-
[Edit Contact Pages](http://validation.web-app.io/contact-edit-links):
220+
[Edit Contact Pages](https://github.com/NetCoreApps/Validation/blob/master/world/wwwroot/contact-edit-links.html):
222221

223222
```ts
224223
const form = document.querySelector("form")!;

0 commit comments

Comments
 (0)