Skip to content

Commit aa31659

Browse files
Merge pull request #100251 from mhopkins-msft/legacy-links
Fixing broken links
2 parents f53efa6 + 86c63f5 commit aa31659

8 files changed

+510
-760
lines changed

.openpublishing.redirection.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24605,6 +24605,16 @@
2460524605
"redirect_url": "/azure/storage/blobs/storage-quickstart-blobs-java",
2460624606
"redirect_document_id": false
2460724607
},
24608+
{
24609+
"source_path": "articles/storage/blobs/storage-quickstart-blobs-nodejs-v10.md",
24610+
"redirect_url": "/azure/storage/blobs/storage-quickstart-blobs-nodejs-legacy",
24611+
"redirect_document_id": false
24612+
},
24613+
{
24614+
"source_path": "articles/storage/blobs/storage-quickstart-blobs-javascript-client-libraries-v10.md",
24615+
"redirect_url": "/azure/storage/blobs/storage-quickstart-blobs-javascript-client-libraries-legacy",
24616+
"redirect_document_id": false
24617+
},
2460824618
{
2460924619
"source_path": "articles/storage/blobs/storage-nodejs-how-to-use-blob-storage.md",
2461024620
"redirect_url": "/azure/storage/blobs/storage-quickstart-blobs-nodejs",

articles/storage/blobs/TOC.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
- name: JavaScript (v12 SDK for Node.js)
4949
href: storage-quickstart-blobs-nodejs.md
5050
- name: JavaScript (v10 SDK for Node.js)
51-
href: storage-quickstart-blobs-nodejs-v10.md
51+
href: storage-quickstart-blobs-nodejs-legacy.md
5252
- name: JavaScript (v10 SDK for browser)
53-
href: storage-quickstart-blobs-javascript-client-libraries-v10.md
53+
href: storage-quickstart-blobs-javascript-client-libraries-legacy.md
5454
- name: Go
5555
href: storage-quickstart-blobs-go.md
5656
- name: PHP
@@ -424,12 +424,6 @@
424424
href: /java/azure/spring-framework/configure-spring-boot-starter-java-app-with-azure-storage
425425
- name: Xamarin
426426
href: storage-xamarin-blob-storage.md
427-
- name: Prior SDK versions
428-
items:
429-
- name: JavaScript (Node.js) (Storage SDK v2)
430-
href: storage-quickstart-blobs-nodejs-legacy.md
431-
- name: JavaScript (browser) (Storage SDK v2)
432-
href: storage-quickstart-blobs-javascript-client-libraries.md
433427
- name: Manage blobs
434428
items:
435429
- name: Azure CLI

articles/storage/blobs/storage-quickstart-blobs-dotnet.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,8 @@ Add this code to the end of the `Main` method:
225225

226226
```csharp
227227
// Download the blob to a local file
228-
// Append the string "DOWNLOAD" before the .txt extension so you can see both files in MyDocuments
228+
// Append the string "DOWNLOAD" before the .txt extension
229+
// so you can compare the files in the data directory
229230
string downloadFilePath = localFilePath.Replace(".txt", "DOWNLOAD.txt");
230231

231232
Console.WriteLine("\nDownloading blob to\n\t{0}\n", downloadFilePath);
@@ -263,7 +264,7 @@ Console.WriteLine("Done");
263264

264265
## Run the code
265266

266-
This app creates a test file in your local *MyDocuments* folder and uploads it to Blob storage. The example then lists the blobs in the container and downloads the file with a new name so that you can compare the old and new files.
267+
This app creates a test file in your local *data* folder and uploads it to Blob storage. The example then lists the blobs in the container and downloads the file with a new name so that you can compare the old and new files.
267268

268269
Navigate to your application directory, then build and run the application.
269270

@@ -295,7 +296,7 @@ Deleting the local source and downloaded files...
295296
Done
296297
```
297298

298-
Before you begin the clean up process, check your *MyDocuments* folder for the two files. You can open them and observe that they are identical.
299+
Before you begin the clean up process, check your *data* folder for the two files. You can open them and observe that they are identical.
299300

300301
After you've verified the files, press the **Enter** key to delete the test files and finish the demo.
301302

articles/storage/blobs/storage-quickstart-blobs-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ Deleting the local source and downloaded files...
345345
Done
346346
```
347347

348-
Before you begin the clean up process, check your *MyDocuments* folder for the two files. You can open them and observe that they are identical.
348+
Before you begin the clean up process, check your *data* folder for the two files. You can open them and observe that they are identical.
349349

350350
After you've verified the files, press the **Enter** key to delete the test files and finish the demo.
351351

articles/storage/blobs/storage-quickstart-blobs-javascript-client-libraries.md

Lines changed: 247 additions & 142 deletions
Large diffs are not rendered by default.

articles/storage/blobs/storage-quickstart-blobs-nodejs-legacy.md

Lines changed: 246 additions & 200 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)