Skip to content

Commit 715dc02

Browse files
committed
changed path to new organization repo
1 parent c829aa5 commit 715dc02

File tree

11 files changed

+25
-9
lines changed

11 files changed

+25
-9
lines changed

MyBlogSample/Features/PostAuthor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ if (!String.IsNullOrWhiteSpace(author))
8989

9090
No intervention
9191

92-
[See the repository with the implementation (!!! contains spoilers)](https://github.com/Magicianred/my-blog-sample/tree/pathFromV1toV2/step03/add-author-to-posts)
92+
[See the repository with the implementation (!!! contains spoilers)](https://github.com/learn-by-doing-organization/my-blog-sample/tree/pathFromV1toV2/step03/add-author-to-posts)
9393
9494
[Return to main page](../README.md)
9595

MyBlogSample/Features/PostAuthor_IT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@ if (!String.IsNullOrWhiteSpace(author))
7171
#### Progetto Integration Test Web
7272
Nessun intervento
7373

74-
[Vedi il repository con l'implementazione (!!!contiene spoiler)](https://github.com/Magicianred/my-blog-sample/tree/pathFromV1toV2/step03/add-author-to-posts)
74+
[Vedi il repository con l'implementazione (!!!contiene spoiler)](https://github.com/learn-by-doing-organization/my-blog-sample/tree/pathFromV1toV2/step03/add-author-to-posts)
7575

7676
[Ritorna alla pagina principale](../README_IT.md)

MyBlogSample/Features/PostCategories.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,6 @@ services.AddScoped<ICategoriesService, CategoriesService>();
7979
- Add a test like *HomeControllerTest.should_retrieve_post_by_id* to verify that the category page responds correctly when requesting an existing id
8080
- Add a test like *HomeControllerTest.should_retrieve_no_one_post* to verify that the category page responds correctly when requesting a non-existent id
8181

82-
[See the repository with the implementation (!!! contains spoilers)](https://github.com/Magicianred/my-blog-sample/tree/pathFromV1toV2/step01/add-category-to-posts)
82+
[See the repository with the implementation (!!! contains spoilers)](https://github.com/learn-by-doing-organization/my-blog-sample/tree/pathFromV1toV2/step01/add-category-to-posts)
8383

8484
[Return to main page](../README.md)

MyBlogSample/Features/PostCategories_IT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ services.AddScoped<ICategoriesService, CategoriesService>();
7979
- Aggiungi un test come *HomeControllerTest.should_retrieve_post_by_id* per verificare che la pagina della categoria risponda correttamente quando si richiede un id esistente
8080
- Aggiungi un test come *HomeControllerTest.should_retrieve_no_one_post* per verificare che la pagina della categoria risponda correttamente quando si richiede un id non esistente
8181

82-
[Vedi il repository con l'implementazione (!!!contiene spoiler)](https://github.com/Magicianred/my-blog-sample/tree/pathFromV1toV2/step01/add-category-to-posts)
82+
[Vedi il repository con l'implementazione (!!!contiene spoiler)](https://github.com/learn-by-doing-organization/my-blog-sample/tree/pathFromV1toV2/step01/add-category-to-posts)
8383

8484
[Ritorna alla pagina principale](../README_IT.md)
8585

MyBlogSample/Features/PostPagination.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,6 @@ ViewBag.IsLast = (posts.Count >= (int)ViewBag.PageSize);
9494
#### Modify Categoria e Tag entity (optional, but highly recommended)
9595
- Make the same changes that we did for the Posts, for Categories and Tags, in the way that these two also will be displayed paginated.
9696

97-
[see the repository with the implementation (!!!contains spoiler)](https://github.com/Magicianred/my-blog-sample/tree/pathFromV1toV2/step04/add-pagination-to-posts)
97+
[see the repository with the implementation (!!!contains spoiler)](https://github.com/learn-by-doing-organization/my-blog-sample/tree/pathFromV1toV2/step04/add-pagination-to-posts)
9898

9999
[Return to main page](../README.md)

MyBlogSample/Features/PostPagination_IT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ ViewBag.IsLast = (posts.Count >= (int)ViewBag.PageSize);
104104
- Effettua le stesse modifiche che abbiamo fatto per i Post per le Categorie ed i Tag, così che anche questi saranno visualizzati paginati.
105105

106106

107-
[Vedi il repository con l'implementazione (!!!contiene spoiler)](https://github.com/Magicianred/my-blog-sample/tree/pathFromV1toV2/step04/add-pagination-to-posts)
107+
[Vedi il repository con l'implementazione (!!!contiene spoiler)](https://github.com/learn-by-doing-organization/my-blog-sample/tree/pathFromV1toV2/step04/add-pagination-to-posts)
108108

109109

110110
[Ritorna alla pagina principale](../README_IT.md)

MyBlogSample/Features/PostTags.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ services.AddScoped<ITagsService, TagsService>();
120120
- Add a test like *HomeControllerTest.should_retrieve_post_by_id* to verify that the page of detail of tag responds correctly when requesting an existing id.
121121
- Add a test like *HomeControllerTest.should_retrieve_no_one_post* to verify that the page of detail of tag responds correctly when requesting a non-existent id.
122122

123-
[See the repository with the implementation (!!! contains spoilers)](https://github.com/Magicianred/my-blog-sample/tree/pathFromV1toV2/step02/add-tags-to-posts)
123+
[See the repository with the implementation (!!! contains spoilers)](https://github.com/learn-by-doing-organization/my-blog-sample/tree/pathFromV1toV2/step02/add-tags-to-posts)
124124

125125
[Return to main page](../README.md)
126126

MyBlogSample/Features/PostTags_IT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ services.AddScoped<ITagsService, TagsService>();
118118
- Aggiungi un test come *HomeControllerTest.should_retrieve_post_by_id* per verificare che la pagina di dettaglio del tag risponda correttamente quando si richiede un id esistente
119119
- Aggiungi un test come *HomeControllerTest.should_retrieve_no_one_post* per verificare che la pagina di dettaglio del tag risponda correttamente quando si richiede un id non esistente
120120

121-
[Vedi il repository con l'implementazione (!!!contiene spoiler)](https://github.com/Magicianred/my-blog-sample/tree/pathFromV1toV2/step02/add-tags-to-posts)
121+
[Vedi il repository con l'implementazione (!!!contiene spoiler)](https://github.com/learn-by-doing-organization/my-blog-sample/tree/pathFromV1toV2/step02/add-tags-to-posts)
122122

123123
[Ritorna alla pagina principale](../README_IT.md)
124124

MyBlogSample/Features/TestingAndBugFixing_IT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Tommaso ti ha chiesto inoltre di dargli una mano per vericare l'esistenza di alt
1414

1515
Nessuna specifica implementativa. In questa attività bisogna eseguire i test e fissare "in qualche modo" gli errori che vengono segnalati dai test. Se non riesci a trovare la soluzione ad un test passa al successivo. Quando hai provato a risolvere tutti i test passa a vedere le soluzioni nel repository.
1616

17-
[Vedi il repository con l'implementazione (!!!contiene spoiler)](https://github.com/Magicianred/my-blog-sample/tree/pathFromV1toV2/step05/bug-fixing)
17+
[Vedi il repository con l'implementazione (!!!contiene spoiler)](https://github.com/learn-by-doing-organization/my-blog-sample/tree/pathFromV1toV2/step05/bug-fixing)
1818

1919

2020
[Ritorna alla pagina principale](../README_IT.md)

MyBlogSample/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
- [Preface](#preface)
77
- [Instructions](#instructions)
8+
- [Clone the project](#clone-the-project)
89
- [Features to implement](#features-to-implement)
910
- [Add categories to Posts [database, backend, frontend]](#add-categories-to-posts)
1011
- [Implementation specifications](Features/PostCategories_IT.md)
@@ -37,6 +38,13 @@ The code of the project is very structured, but it has few features yet. It is r
3738
## Instructions
3839
Below you will find listed the features them will want to see implemented in the project. A *functional* description will be presented which is what the *customer*, in our case Tom and Jim, want to have on their blog. If you have some experience, or want to get involved, this description may already be enough for you to start the business. On the contrary, if you need help understanding what to do click on the link *Implementation specifications* and you will find technical details on how to proceed.
3940

41+
### Clona il repository
42+
First, clone the project repository
43+
44+
```bash
45+
git clone https://github.com/learn-by-doing-organization/my-blog-sample.git
46+
```
47+
4048
## Features to implement
4149
The features to be implemented will lead to the release of version 2.0 of the project.
4250

0 commit comments

Comments
 (0)