Skip to content

Commit 93be9b4

Browse files
committed
remove testing commands
1 parent b66c2e4 commit 93be9b4

11 files changed

+132
-243
lines changed
Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
# Each redirect YAML document has the following schema:
2+
#
3+
# from: "the path to the redirected URL"
4+
# url-base: "the path to the new location for the resource"
5+
# type: "currently this script only supports 'redirect', and
6+
# ignores all documents with another type."
7+
# code: "the HTTP redirect code. Raises exception if not 301, 302, 303."
8+
# outputs: "a list of branches/paths beneath http://docs.mongodb.com/ to
9+
# place this redirect. 'all', 'before-<branch>' and
10+
# 'after-<branch>' have special meaning.
11+
#
12+
# 'outputs' possibility:
13+
#
14+
# - 'all': generates redirects for all published branches, but *not* 'manual'.
15+
#
16+
# - '<branch>': generates redirects for a specific branch.
17+
#
18+
# - 'before-<branch>': generates redirects for all branches that
19+
# reflect releases previous to the specified branch. (Inclusive.)
20+
# bit of a misnomer -- it is up to and including
21+
#
22+
# - 'after-<branch>': generates redirects for all branches that
23+
# reflect releases after the specified branch. (Non-inclusive.)
24+
#
25+
# All paths are relative to the ``source/`` directory.
26+
#
27+
########################################################################
28+
29+
from: /reference/command/captrunc
30+
to: /reference/command/
31+
type: 'redirect'
32+
code: 303
33+
outputs:
34+
- 'all'
35+
- 'manual'
36+
---
37+
from: /reference/command/configureFailPoint
38+
to: /reference/command/
39+
type: 'redirect'
40+
code: 303
41+
outputs:
42+
- 'all'
43+
- 'manual'
44+
---
45+
from: /reference/command/emptycapped
46+
to: /reference/command/
47+
type: 'redirect'
48+
code: 303
49+
outputs:
50+
- 'all'
51+
- 'manual'
52+
---
53+
from: /reference/command/forceerror
54+
to: /reference/command/
55+
type: 'redirect'
56+
code: 303
57+
outputs:
58+
- 'all'
59+
- 'manual'
60+
---
61+
from: /reference/command/godinsert
62+
to: /reference/command/
63+
type: 'redirect'
64+
code: 303
65+
outputs:
66+
- 'all'
67+
- 'manual'
68+
---
69+
from: /reference/command/hashBSONElement
70+
to: /reference/command/
71+
type: 'redirect'
72+
code: 303
73+
outputs:
74+
- 'all'
75+
- 'manual'
76+
---
77+
from: /reference/command/journalLatencyTest
78+
to: /reference/command/
79+
type: 'redirect'
80+
code: 303
81+
outputs:
82+
- 'all'
83+
- 'manual'
84+
---
85+
from: /reference/command/replSetTest
86+
to: /reference/command/
87+
type: 'redirect'
88+
code: 303
89+
outputs:
90+
- 'all'
91+
- 'manual'
92+
---
93+
from: /reference/command/skewClockCommand
94+
to: /reference/command/
95+
type: 'redirect'
96+
code: 303
97+
outputs:
98+
- 'all'
99+
- 'manual'
100+
---
101+
from: /reference/command/sleep
102+
to: /reference/command/
103+
type: 'redirect'
104+
code: 303
105+
outputs:
106+
- 'all'
107+
- 'manual'
108+
---
109+
from: /reference/command/testDistLockWithSkew
110+
to: /reference/command/
111+
type: 'redirect'
112+
code: 303
113+
outputs:
114+
- 'all'
115+
- 'manual'
116+
---
117+
from: /reference/command/testDistLockWithSyncCluster
118+
to: /reference/command/
119+
type: 'redirect'
120+
code: 303
121+
outputs:
122+
- 'all'
123+
- 'manual'
124+
---
125+
from: /command/nav-testing
126+
to: /reference/command/
127+
type: 'redirect'
128+
code: 303
129+
outputs:
130+
- 'all'
131+
- 'manual'
132+
...

source/reference/command/captrunc.txt

Lines changed: 0 additions & 39 deletions
This file was deleted.

source/reference/command/emptycapped.txt

Lines changed: 0 additions & 28 deletions
This file was deleted.

source/reference/command/forceerror.txt

Lines changed: 0 additions & 17 deletions
This file was deleted.

source/reference/command/godinsert.txt

Lines changed: 0 additions & 22 deletions
This file was deleted.

source/reference/command/journalLatencyTest.txt

Lines changed: 0 additions & 27 deletions
This file was deleted.

source/reference/command/replSetTest.txt

Lines changed: 0 additions & 18 deletions
This file was deleted.

source/reference/command/skewClockCommand.txt

Lines changed: 0 additions & 18 deletions
This file was deleted.

source/reference/command/sleep.txt

Lines changed: 0 additions & 38 deletions
This file was deleted.

source/reference/command/testDistLockWithSkew.txt

Lines changed: 0 additions & 18 deletions
This file was deleted.

source/reference/command/testDistLockWithSyncCluster.txt

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)