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

Commit e523ca2

Browse files
committed
Merge branch 'hotfix/163'
Close #163
2 parents 95beb4d + bdc1e91 commit e523ca2

File tree

11 files changed

+21
-21
lines changed

11 files changed

+21
-21
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ env:
2525
- GH_USER_NAME: "Matthew Weier O'Phinney"
2626
- GH_USER_EMAIL: [email protected]
2727
- GH_REF: github.com/zendframework/zend-form.git
28-
- secure: "H5t5GcHDEX230xPN0QvXAkKzziCdYb+YQ9EFCsD+hJLm1kdYKmg7NbBibPIr86js01iiVB+q2OZQ+pk6kIigSmNu/zeBR2q2zJYKbOUTGvAGj0pIsje7XpZr/FcSOHUOtm/8yHD8z3KNoood4au3Zsmr8D2bbGvqLe3ZfwFmzIsPTFmB5IvfvHiN4j6NsOP9rGlLzp93Gquv1XSHjuvM2Lr8Jbornf5JVqXaHgIniTRlBzckIcwhaMJKRUjT0jxAnKEZKa9NLkRaj40g+pFDVXxJwq7/5gDj+g7684lbSToZU29ye/akvk1KAkGeXE6f/CYqn/1qi2cfMyFRuwzCaLbKTci7EQBho0iWp39eq/jVT/+XpUKDJikW0xJZYnUMd78uZBseE8iNUdaLojoVUYkOaAevIjr+VaF0j1GWmgcChN2NHyCOj++PNZBLovfL6d2RPUFD82vo6oA6MvtsuZDfEV9F1mWNHcDkb7PgS0Yh6Ag+47iRKptb0nMGgthE2ErieNE7CX1kp0u4tjSQK44XSYP4ObAGCo/Wuxl6xxlgwEYCqGOr+Tu2g2s0R4ocQVsWeRlvKBVdQr5peVxOMcK5Zj15sK9BQ1gjINf6IcpEeh0Tg1Cf9Cy8PwPds/Ym7lc6jv71c0LUCZiLQ/hTkd1euCG3ykzkQ9CEGt+ESLc="
28+
- secure: "nr4sIJy4elJkolkeNtNF4rqerQ32TcCD2i9j89o6xfVcO8140fJU9U9gkBhyq/XZc0H/tiIA/NnaKLp9wbeKRYO7qNi5VF+lUDhL2CJvOwlA1lTw48zLQ+CMHvjs5uo0wegCMaOh+L/EVlycRnoYc86gdCYjYlZMn/7B/ONEq+AM25vHEi1R/groSYVVnFCxGxoyVqRdWwgQOwfNM0GmwvAU7pukUj6Lw8ctFxErA2QflsupDg6YKv4907e0VmcvZzTAfOSVFjTFIt+wFDFR2cIf4dtps8MTqSJ5RQvqA3pe7fTRif+RtvsIe1JAz6tNUa4i5IKOk7E3G1vK4Hqwm2+mFH8p7dw4Xd0rK987ctLR/iV/lxxOMkQ3WRijalr/GwmF4m0aCsup2JeW+pf5L4pQclfxFTjm8xk1QqHH9sLidC/pq4tInOz3e8RPiE6JtgAvOA+omd0Upvuw2hdmyb6MkieCD6/1dlARLLZh5AKpb799wxo4qq6CRFcEXBP/8gXeepTO2dYd2ChjEYTinIHT19wWJhcYDLnCLqStND52/ZLp3FY7jQbBp/hblKm4N1+guf/Ic1bxHqpn8O5HBw3W05RJtHOIcURbHMnqcXhrrVmiV9yyS1RK7FFtu6tgyOKPIt0dY7g20dbT2cj6+zeoxaglbzCTxHUm9xcaA0Y="
2929

3030
matrix:
3131
include:

doc/book/element/captcha.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ CAPTCHA adapter in use.
88
## Basic Usage
99

1010
A CAPTCHA adapter must be attached in order for validation to be included in the
11-
element's input filter specification. See the [zend-captcha documentation](https://zendframework.github.io/zend-captcha/adapters/)
11+
element's input filter specification. See the [zend-captcha documentation](https://docs.zendframework.com/zend-captcha/adapters/)
1212
for more information on what adapters are available.
1313

1414
```php

doc/book/element/file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
`Zend\Form\Element\File` represents a form file input and
44
provides a default input specification with a type of
5-
[FileInput](http://framework.zend.com/manual/current/en/modules/zend.input-filter.file-input.html)
5+
[FileInput](https://docs.zendframework.com/zend-inputfilter/file-input/)
66
(important for handling validators and filters correctly).
77
It is intended for use with the [FormFile](../helper/form-file.md) view helper.
88

doc/book/element/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A set of specialized elements are provided for accomplishing application-centric
44
tasks. These include several HTML5 input elements with matching server-side
55
validators, the `Csrf` element (to prevent Cross Site Request Forgery attacks),
66
and the `Captcha` element (to display and validate
7-
[CAPTCHAs](https://zendframework.github.io/zend-captcha/)).
7+
[CAPTCHAs](https://docs.zendframework.com/zend-captcha/)).
88

99
A `Factory` is provided to facilitate creation of elements, fieldsets, forms,
1010
and the related input filter. See the [quick start](../quick-start.md#creation-via-factory)

doc/book/file-upload.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
zend-form provides support for file uploading by using features from each of
44
[zend-inputfilter](https://github.com/zendframework/zend-inputfilter),
55
[zend-validator](https://github.com/zendframework/zend-validator),
6-
[zend-filter](https://zendframework.github.io/zend-filter), and
6+
[zend-filter](https://docs.zendframework.com/zend-filter), and
77
[zend-progressbar](https://github.com/zendframework/zend-progressbar). These
88
reusable framework components provide a convenient and secure way for handling
99
file uploads in your projects.
@@ -61,8 +61,8 @@ The `File` element provides several automated features:
6161
- The form's `enctype` will automatically be set to `multipart/form-data` when
6262
the form's `prepare()` method is called.
6363
- The file element's default input specification will create the correct `Input`
64-
type: [`Zend\InputFilter\FileInput`](http://framework.zend.com/manual/current/en/modules/zend.input-filter.file-input.html).
65-
- The `FileInput` will automatically prepend an [UploadFile validator](http://framework.zend.com/manual/current/en/modules/zend.validator.file.html#uploadfile)
64+
type: [`Zend\InputFilter\FileInput`](https://docs.zendframework.com/zend-inputfilter/file-input/).
65+
- The `FileInput` will automatically prepend an [UploadFile validator](https://docs.zendframework.com/zend-validator/validators/file/upload-file/)
6666
to securely validate that the file is actually an uploaded file, and to report
6767
any upload errors to the user.
6868

@@ -189,7 +189,7 @@ array(1) {
189189
> }
190190
> ```
191191
>
192-
> [`Zend\InputFilter\FileInput`](http://framework.zend.com/manual/current/en/modules/zend.input-filter.file-input.html) expects the file data be in this
192+
> [`Zend\InputFilter\FileInput`](https://docs.zendframework.com/zend-inputfilter/file-input/) expects the file data be in this
193193
> re-mapped array format.
194194
>
195195
> Note: [PSR-7](http://www.php-fig.org/psr/psr-7/) also remaps the `$_FILES`
@@ -208,7 +208,7 @@ One strategy to get around this is to split the form into multiple forms. One
208208
form for the file upload inputs and another for the other standard inputs.
209209
210210
When you cannot separate the forms, the [File Post-Redirect-Get
211-
Plugin](https://zendframework.github.io/zend-mvc-plugin-fileprg/) can be used to
211+
Plugin](https://docs.zendframework.com/zend-mvc-plugin-fileprg/) can be used to
212212
manage the file inputs and save off valid uploads until the entire form is
213213
valid.
214214
@@ -413,7 +413,7 @@ must use a server-side progress solution.
413413

414414
`Zend\ProgressBar\Upload` provides handlers that can give you the actual state
415415
of a file upload in progress. To use this feature, you need to choose one of the
416-
[Upload Progress Handlers](http://framework.zend.com/manual/current/en/modules/zend.progress-bar.upload.html)
416+
[Upload Progress Handlers](https://docs.zendframework.com/zend-progressbar/upload/)
417417
(APC, uploadprogress, or Session) and ensure that your server setup has the
418418
appropriate extension or feature enabled.
419419

@@ -672,11 +672,11 @@ Related documentation:
672672

673673
- [Form File Element](element/file.md)
674674
- [Form File View Helper](helper/form-file.md)
675-
- [List of File Validators](http://framework.zend.com/manual/current/en/modules/zend.validator.file.html)
675+
- [List of File Validators](https://docs.zendframework.com/zend-validator/validators/file/intro/)
676676
- [List of File Filters](http://zendframework.github.io/zend-filter/file/)
677-
- [File Post-Redirect-Get Controller Plugin](https://zendframework.github.io/zend-mvc-plugin-fileprg/)
678-
- [Zend\InputFilter\FileInput](http://framework.zend.com/manual/current/en/modules/zend.input-filter.file-input.html)
679-
- [Upload Progress Handlers](http://framework.zend.com/manual/current/en/modules/zend.progress-bar.upload.html)
677+
- [File Post-Redirect-Get Controller Plugin](https://docs.zendframework.com/zend-mvc-plugin-fileprg/)
678+
- [Zend\InputFilter\FileInput](https://docs.zendframework.com/zend-inputfilter/file-input/)
679+
- [Upload Progress Handlers](https://docs.zendframework.com/zend-progressbar/upload/)
680680
- [Upload Progress View Helpers](helper/upload-progress-helpers.md)
681681

682682
External resources and blog posts from the community:

doc/book/helper/form-file-apc-progress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ An `id` attribute with a value of `"progress_key"` will automatically be added.
1313
> The view helper **must** be rendered *before* the file input in the form, or
1414
> upload progress will not work correctly.
1515
16-
Best used with the [Zend\ProgressBar\Upload\ApcProgress](http://framework.zend.com/manual/current/en/modules/zend.progress-bar.upload.html#apc-progress-handler)
16+
Best used with the [Zend\ProgressBar\Upload\ApcProgress](https://docs.zendframework.com/zend-progressbar/upload/#apc-progress-handler)
1717
handler.
1818

1919
See the `apc.rfc1867` ini setting in the [APC Configuration](http://php.net/apc.configuration)

doc/book/helper/form-file-session-progress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ An `id` attribute with a value of `"progress_key"` will automatically be added.
1212
> The view helper **must** be rendered *before* the file input in the form, or
1313
> upload progress will not work correctly.
1414
15-
Best used with the [Zend\ProgressBar\Upload\SessionProgress](http://framework.zend.com/manual/current/en/modules/zend.progress-bar.upload.html#session-progress-handler)
15+
Best used with the [Zend\ProgressBar\Upload\SessionProgress](https://docs.zendframework.com/zend-progressbar/upload/#session-progress-handler)
1616
handler.
1717

1818
See the [Session Upload Progress](http://php.net/session.upload-progress)

doc/book/helper/form-file-upload-progress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ An `id` attribute with a value of `progress_key` will automatically be added.
1212
> The view helper **must** be rendered *before* the file input in the form, or
1313
> upload progress will not work correctly.
1414
15-
This element should be used with the [Zend\ProgressBar\Upload\UploadProgress](http://framework.zend.com/manual/current/en/modules/zend.progress-bar.upload.html#upload-progress-handler)
15+
This element should be used with the [Zend\ProgressBar\Upload\UploadProgress](https://docs.zendframework.com/zend-progressbar/upload/#upload-progress-handler)
1616
handler.
1717

1818
See the [PECL uploadprogress extension](http://pecl.php.net/package/uploadprogress)

doc/book/helper/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
zend-form comes with an initial set of zend-view helper classes for tasks such
44
as rendering forms, rendering a text input, rendering a selection box, etc.
55

6-
See the [view helpers documentation](http://framework.zend.com/manual/current/en/modules/zend.view.helpers.html)
6+
See the [view helpers documentation](https://docs.zendframework.com/zend-view/helpers/intro/)
77
for more information.

doc/book/intro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The component consists of the following objects:
1212
elements.
1313
- Forms, which extend from Fieldsets (and thus Elements). They provide data and
1414
object binding, and compose [InputFilters](https://github.com/zendframework/zend-inputfilter/).
15-
Data binding is done via [zend-hydrator](https://zendframework.github.io/zend-hydrator/).
15+
Data binding is done via [zend-hydrator](https://docs.zendframework.com/zend-hydrator/).
1616

1717
To facilitate usage with the view layer, zend-form also aggregates a number of
1818
form-specific view helpers. These accept elements, fieldsets, and/or forms, and
@@ -21,7 +21,7 @@ use the attributes they compose to render markup.
2121
A small number of specialized elements are provided for accomplishing
2222
application-centric tasks. These include the `Csrf` element, used to prevent
2323
Cross Site Request Forgery attacks, and the `Captcha` element, used to display
24-
and validate [CAPTCHAs](https://zendframework.github.io/zend-captcha).
24+
and validate [CAPTCHAs](https://docs.zendframework.com/zend-captcha).
2525

2626
A `Factory` is provided to facilitate creation of elements, fieldsets, forms,
2727
and the related input filter. The default `Form` implementation is backed by a

doc/book/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ use Zend\Form\FormInterface;
671671
$data = $form->getData(FormInterface::VALUES_AS_ARRAY);
672672
```
673673

674-
Zend Framework ships several standard [hydrators](https://zendframework.github.io/zend-hydrator/);
674+
Zend Framework ships several standard [hydrators](https://docs.zendframework.com/zend-hydrator/);
675675
you can create custom hydrators by implementing `Zend\Hydrator\HydratorInterface`,
676676
which looks like this:
677677

0 commit comments

Comments
 (0)