1000 Commits

Author SHA1 Message Date
Vitaliy Chesnokov
81274509da
Allow to define the input name for the JmsMetadataParser 2019-04-25 21:55:45 +03:00
Vitaliy Chesnokov
b7464a93b9
* Range Constraint parsing in the ValidationParser
* Better formatting form Length constraint description
* Allow to define the input name for the ValidationParser
2019-04-25 21:55:41 +03:00
Vitaliy Chesnokov
cd87930d29
Check the version in methods response 2019-04-25 21:50:32 +03:00
Vitaliy Chesnokov
c6fa1e893e
Locale setting for the Translator 2019-04-25 21:50:32 +03:00
Vitaliy Chesnokov
1c4f003e76
Doc generation for the specific API version 2019-04-25 21:50:28 +03:00
Guilhem N
f0a606b636
Merge pull request #1134 from dunglas/fix-34-40-compat
[2.x] Fix compatibility with Symfony 3.4 and 4.0
2017-12-05 07:14:09 +01:00
Kévin Dunglas
f4b599f6d0
[2.x] Fix compatibility with Symfony 3.4 and 4.0 2017-12-04 23:11:29 +01:00
Guilhem Niot
8886e6eff8 Merge pull request #1043 from xabbuh/patch-1
fix section title markup
2017-07-25 11:28:44 +02:00
Christian Flothmann
83ed0a3407 fix section title markup 2017-07-25 11:26:50 +02:00
Guilhem Niot
17b6c3aeba Update branch alias 2017-05-31 14:17:35 +02:00
Guilhem Niot
adcdd91950 Update the documentation link 2017-05-13 16:53:58 +02:00
Lukas Kahwe Smith
ae18441763 Merge pull request #989 from lsmith77/submit-boolean-as-json-boolean
ensure that boolean fields are submited as boolean values when using json
2017-04-28 17:27:09 +02:00
Lukas Kahwe Smith
e5268e3f7f
ensure that boolean fields are submited as boolean values when using json 2017-04-28 16:56:15 +02:00
Guilhem Niot
572c69a509 Merge pull request #988 from lsmith77/fix-filters-always-as-query-parameters
Fix filters always as query parameters
2017-04-28 14:36:48 +00:00
Lukas Kahwe Smith
33307d750e
fix typo to force filters as query parameters 2017-04-28 15:58:38 +02:00
Soltész Balázs
e2c3d7ce94
Make filters always be passed as query string parameters in sandbox requests. 2017-04-28 12:36:27 +02:00
Guilhem Niot
3727d043cb Merge pull request #963 from shadowjs/patch-1
Update swagger-support.rst
2017-03-15 13:54:04 +01:00
shadowjs
ad1b9eec31 Update swagger-support.rst 2017-02-23 22:51:49 +01:00
Javier Spagnoletti
eab2d5d8fc Bumping to PHP 5.4 since the current codebase is already using features introduced in that version 2017-02-19 02:14:31 -03:00
Guilhem N
b01128dc13 Merge pull request #841 from flip111/patch-1
Update ApiDocExtractor.php
2016-12-29 12:21:15 +01:00
Guilhem N
7a7d743ff6 Merge pull request #915 from mhor/patch-1
docs: fix rst typo
2016-12-29 12:16:30 +01:00
Guilhem N
ff3bf88bed Merge pull request #895 from wouterj/patch-1
Fixed little Markdown syntax
2016-12-29 12:14:59 +01:00
Guilhem N
2d70b08021 Merge pull request #924 from tael/patch-1
swagger-ui repository changed
2016-12-29 12:10:31 +01:00
William Durand
95017bf780 Merge pull request #926 from kustov-an/dump_command_description
Add description for the dump command
2016-10-26 09:33:33 +02:00
Alexander Kustov
8f9d096448 Add description for the dump command 2016-10-26 10:15:13 +05:00
TaeL Kim
66e8e15ff1 swagger-ui repository changed 2016-10-21 14:55:56 +09:00
William Durand
958e697981 Merge pull request #922 from javiereguiluz/fix_doc_errors
Fixed minor RST syntax issues in docs
2016-10-03 21:10:35 +02:00
Javier Eguiluz
c531fcc037 Fixed minor RST syntax issues in docs 2016-10-03 15:42:40 +02:00
Maxime Horcholle
13c25eb4c4 docs: fix rst typo 2016-09-22 10:29:54 +02:00
William Durand
73d4db51e1 Merge pull request #912 from ruscon/patch-1
Update .travis.yml
2016-09-10 08:38:33 +02:00
Coroliov Oleg
9387638079 Update .travis.yml 2016-09-10 00:38:59 +03:00
Wouter J
b5d371d984 Fixed little Markdown syntax 2016-08-10 10:37:07 +02:00
William Durand
e6e424687e Merge pull request #890 from Invis1ble/fix-889
Fixed placeholder translations #889
2016-08-04 11:03:43 +02:00
Invis1ble
97c6b1e857 Fixed placeholder translations #889 2016-07-29 09:20:35 +03:00
William Durand
463dea9af6 Merge pull request #874 from rmzamora/master
Fix error: Key "statusCodes" for array with keys...
2016-06-16 17:04:18 +02:00
mellzamora
f5e38a283a Fix error:
Key "statusCodes" for array with keys "method, uri, description, documentation, filters, requirements, parsedResponseMap, https, authentication, authenticationRoles, deprecated, id" does not exist in NelmioApiDocBundle::method.html.twig at line 182.

Sample:

 /**
     * Retrieves the list of categories (paginated) based on criteria.
     *
     * @ApiDoc(
     *  resource=true,
     *  output={"class"="Sonata\DatagridBundle\Pager\PagerInterface", "groups"={"sonata_api_read"}}
     * )
     *
     *
     * @QueryParam(name="page", requirements="\d+", default="1", description="Page for category list pagination")
     * @QueryParam(name="count", requirements="\d+", default="10", description="Number of categories by page")
     * @QueryParam(name="enabled", requirements="0|1", nullable=true, strict=true, description="Enabled/Disabled categories filter")
     * @QueryParam(name="context", requirements="\S+", nullable=true, strict=true, description="Context of categories")
     *
     * @View(serializerGroups="sonata_api_read", serializerEnableMaxDepthChecks=true)
     *
     * @param ParamFetcherInterface $paramFetcher
     *
     * @return PagerInterface
     */
2016-06-16 22:44:56 +08:00
William Durand
a3a9bb3b70
Prepare 2.13.0 release 2016-06-13 11:12:09 +02:00
William Durand
79716d49f5
Remove a test since #811 changes the behavior 2016-06-13 11:04:16 +02:00
William Durand
4b16f4e068
Do not fail on Symfony 4.0 deprecation messages 2016-06-13 10:53:00 +02:00
William Durand
7aeea0871c Merge pull request #811 from InputOutput/allow-input-and-filters
Allow filter descriptions to be used in conjunction with POST/PUT inp…
2016-06-13 10:01:34 +02:00
William Durand
9444172abc Merge pull request #857 from zanardigit/master
Add navigation index for resources
2016-06-13 10:01:12 +02:00
William Durand
e6ea85157e Merge pull request #868 from dpcat237/502_hide-requirement-when-empty
#502 hide requirement when empty
2016-06-13 10:00:49 +02:00
Denys Pasishnyi
1256275185 #502 Test for the improvement 2016-06-13 00:30:40 +02:00
Denys Pasishnyi
725e4d9dda #502 Hide Requirement when not set 2016-06-13 00:29:59 +02:00
William Durand
a009e97382 Merge pull request #866 from Gregoire-M/master
Usage of OUTPUT_RAW to avoid javascript syntax error when dumping HTML
2016-06-10 13:30:55 +02:00
gmarchal
05d3a51259 Usage of OUTPUT_RAW to avoid javascript syntax error when dumping HTML API doc. Fixes issue #864. 2016-06-10 10:47:43 +02:00
William Durand
6d16486abb Merge pull request #865 from javiereguiluz/fix_doc_links
Fixed the links to some doc articles
2016-06-09 16:50:28 +02:00
Javier Eguiluz
4a37d638f8 Fixed the links to some doc articles 2016-06-09 15:56:07 +02:00
William Durand
d0eaafadcb Merge pull request #861 from Uplink03/master
Links from index.rst to the other doc files
2016-06-03 17:50:40 +02:00
Uplink03
8eee7fec49 Added links form index.rst to the other doc files 2016-06-02 16:30:54 +01:00