Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit 892e06b

Browse files
committed
Merge branch 'docs/21'
Close #21
2 parents ebb4df9 + 45f5404 commit 892e06b

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

doc/book/routing.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ interface RouteStackInterface extends RouteInterface
7070
```
7171

7272
Routes will be queried in a LIFO order, and hence the reason behind the name
73-
`RouteStack`. zend-mvc provides two implementations of this interface,
73+
`RouteStack`. zend-router provides two implementations of this interface,
7474
`SimpleRouteStack` and `TreeRouteStack`. In each, you register routes either one
7575
at a time using `addRoute()`, or in bulk using `addRoutes()`.
7676

@@ -108,7 +108,7 @@ $router->addRoutes([
108108

109109
Two routers are provided, the `SimpleRouteStack` and `TreeRouteStack`. Each
110110
works with the above interface, but utilize slightly different options and
111-
execution paths. By default, the zend-mvc uses the `TreeRouteStack` as the
111+
execution paths. By default, the zend-router uses the `TreeRouteStack` as the
112112
router.
113113

114114
### SimpleRouteStack
@@ -151,9 +151,9 @@ route.
151151

152152
## HTTP Route Types
153153

154-
zend-mvc ships with the following HTTP route types.
154+
zend-router ships with the following HTTP route types.
155155

156-
### Zend\\Mvc\\Router\\Http\\Hostname
156+
### Zend\\Router\\Http\\Hostname
157157

158158
The `Hostname` route attempts to match the hostname registered in the request
159159
against specific criteria. Typically, this will be in one of the following
@@ -198,7 +198,7 @@ $route = Hostname::factory([
198198
When matched, the above will return two keys in the `RouteMatch`, "subdomain"
199199
and "type".
200200

201-
### Zend\\Mvc\\Router\\Http\\Literal
201+
### Zend\\Router\\Http\\Literal
202202

203203
The `Literal` route is for doing exact matching of the URI path. Configuration
204204
therefore is solely the path you want to match, and the "defaults", or
@@ -217,7 +217,7 @@ $route = Literal::factory([
217217
The above route would match a path "/foo", and return the key "action" in the
218218
`RouteMatch`, with the value "foo".
219219

220-
### Zend\\Mvc\\Router\\Http\\Method
220+
### Zend\\Router\\Http\\Method
221221

222222
The `Method` route is used to match the HTTP method or 'verb' specified in the
223223
request (See RFC 2616 Sec. 5.1.1). It can optionally be configured to match
@@ -236,7 +236,7 @@ $route = Method::factory([
236236
The above route would match an http "POST" or "PUT" request and return a
237237
`RouteMatch` object containing a key "action" with a value of "form-submit".
238238

239-
### Zend\\Mvc\\Router\\Http\\Part
239+
### Zend\\Router\\Http\\Part
240240

241241
A `Part` route allows crafting a tree of possible routes based on segments of
242242
the URI path. It actually extends the `TreeRouteStack`.
@@ -353,7 +353,7 @@ You may use any route type as a child route of a `Part` route.
353353
> set up by default, and the developer does not need to worry about autoloading
354354
> of standard HTTP routes.
355355
356-
### Zend\\Mvc\\Router\\Http\\Regex
356+
### Zend\\Router\\Http\\Regex
357357
358358
A `Regex` route utilizes a regular expression to match against the URI path. Any
359359
valid regular expression is allowed; our recommendation is to use named captures
@@ -385,7 +385,7 @@ items in the `RouteMatch`, an "id", the "controller", the "action", and the
385385
"format". When assembling a URL from this route, the "id" and "format" values
386386
would be used to fill the specification.
387387

388-
### Zend\\Mvc\\Router\\Http\\Scheme
388+
### Zend\\Router\\Http\\Scheme
389389

390390
The `Scheme` route matches the URI scheme only, and must be an exact match. As
391391
such, this route, like the `Literal` route, simply takes what you want to match
@@ -403,7 +403,7 @@ $route = Scheme::factory([
403403
The above route would match the "https" scheme, and return the key "https" in
404404
the `RouteMatch` with a boolean `true` value.
405405

406-
### Zend\\Mvc\\Router\\Http\\Segment
406+
### Zend\\Router\\Http\\Segment
407407

408408
A `Segment` route allows matching any segment of a URI path. Segments are
409409
denoted using a colon, followed by alphanumeric characters; if a segment is
@@ -440,7 +440,7 @@ $route = Segment::factory([
440440
]);
441441
```
442442

443-
### Zend\\Mvc\\Router\\Http\\Query (Deprecated)
443+
### Zend\\Router\\Http\\Query (Deprecated)
444444

445445
> #### Potential security issue
446446
>
@@ -507,7 +507,7 @@ will then be appended as a query string.
507507
The output from our example should then be
508508
`/page/my-test-page?format=rss&limit=10`
509509

510-
### Zend\\Mvc\\Router\\Http\\Wildcard (Deprecated)
510+
### Zend\\Router\\Http\\Wildcard (Deprecated)
511511

512512
> #### Potential security issue
513513
>

0 commit comments

Comments
 (0)