Skip to content

Commit 141ec5d

Browse files
Aschenscottinet
authored andcommitted
fix(redirections): adapt legacy redirection (#325)
<!-- This template is optional. It simply serves to provide a guide to allow a better review of pull requests. --> <!-- IMPORTANT Don't forget to add the corresponding "changelog:xxx" label to your PR. This is part of our release process in order to generate the change log. --> ## What does this PR do? Adapt legacy redirection to forward request to doc v3 ### How should this be manually tested? <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> - Step 1 : - Step 2 : - Step 3 : ... ### Other changes <!-- Please describe here all changes not directly linked to the main issue, but made because of it. For instance: issues spotted during this PR and fixed on-the-fly, dependencies update, and so on --> ### Boyscout <!-- Describe here minor improvements in the code base and not directly linked to the main changes: typos fixes, better/new comments, small code simplification, new debug messages, and so on. -->
1 parent 7bd8386 commit 141ec5d

File tree

1 file changed

+38
-15
lines changed

1 file changed

+38
-15
lines changed

redirections.yml

Lines changed: 38 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -488,52 +488,75 @@ redirections:
488488
- from: sdk-reference/php/3/user
489489
to: sdk/php/3/core-classes/user
490490

491-
redirectionslegacy:
491+
# Legacy (doc v1)
492492
- from: api-documentation
493493
to: core/1/api
494+
494495
- from: sdk-reference/essentials
495496
to: sdk
497+
496498
- from: elasticsearch-cookbook/bool-query
497-
to: core/1/guide/cookbooks/elasticsearch/bool-query
499+
to: core/1/guides/cookbooks/elasticsearch/bool-query
500+
498501
- from: guide/getting-started
499-
to: core/1/guide/guides/getting-started
502+
to: core/1/guides/getting-started
503+
500504
- from: guide/essentials/installing-kuzzle
501-
to: core/1/guide/guides/essentials/installing-kuzzle
505+
to: core/1/guides/essentials/installing-kuzzle
506+
502507
- from: guide/essentials/installing-console
503-
to: core/1/guide/guides/essentials/installing-console
508+
to: core/1/guides/essentials/admin-console
509+
504510
- from: guide/code-examples/geofencing/javascript
505-
to: core/1/guide/code-examples/geofencing/javascript
511+
to: core/1/guides/code-examples/geofencing/javascript
512+
506513
- from: guide/essentials
507-
to: core/1/guide/guides/essentials
514+
to: core/1/guides/essentials
515+
508516
- from: sdk-reference/collection
509517
to: sdk
518+
510519
- from: elasticsearch-cookbook/useful-commands
511-
to: core/1/guide/cookbooks/elasticsearch/useful-commands
520+
to: core/1/guides/cookbooks/elasticsearch/useful-commands
521+
512522
- from: guide/code-examples/dbsearch/javascript
513-
to: core/1/guide/code-examples/dbsearch/javascript
523+
to: core/1/guides/code-examples/dbsearch/javascript
524+
514525
- from: guide/essentials/plugins
515-
to: core/1/plugins/plugins/essentials/available-plugins
526+
to: core/1/plugins/essentials/available-plugins
527+
516528
- from: guide/kuzzle-depth
517-
to: core/1/guide/guides/kuzzle-depth
529+
to: core/1/guides/kuzzle-depth
530+
518531
- from: plugins-reference/plugins-features
519-
to: core/1/plugins/plugins/essentials/getting-started
532+
to: core/1/plugins/essentials/getting-started
533+
520534
- from: sdk-reference/essentials/events
521535
to: sdk/js/6/essentials/events
536+
522537
- from: sdk-reference/essentials/notifications
523538
to: sdk/js/6/essentials/realtime-notifications
539+
524540
- from: elasticsearch-cookbook/basic-queries
525-
to: core/1/guide/cookbooks/elasticsearch/basic-queries
541+
to: core/1/guides/cookbooks/elasticsearch/basic-queries
542+
526543
- from: guide/essentials/real-time
527-
to: core/1/guide/guides/essentials/real-time
544+
to: core/1/guides/essentials/real-time
545+
528546
- from: sdk-reference/collection/search
529547
to: sdk
548+
530549
- from: sdk-reference/kuzzle
531550
to: sdk
551+
532552
- from: api-documentation/query-syntax
533553
to: core/1/api/essentials/query-syntax
554+
534555
- from: kuzzle-events/plugin-events
535-
to: core/1/plugins/plugins/events
556+
to: core/1/plugins/guides/events
557+
536558
- from: sdk-reference/kuzzle/login
537559
to: sdk/js/6/controllers/auth/login
560+
538561
- from: sdk-reference/memory-storage/pfadd
539562
to: sdk/js/6/controllers/ms/pfadd

0 commit comments

Comments
 (0)