Dmitry Zaytsev

Results 14 comments of Dmitry Zaytsev

@yegor256 also I need add the namespace declaration to the root element. I expect if I use `attr("name", "string", "ns")` then Xembler should add the namespace declaration to the root...

@yegor256 a validation is good idea. but let's imagine if I should generate a document ``` ``` A developer made a Directivies with `.add("ns0:element1")` in one class and `.add("ns2:element3")` in...

@yegor256 maybe to add the constant to Xembly in this case? e.g. `Xembly.HEADER` `public final String HEADER =""`

@yegor256 ok, let's remove the header, I agree

@yegor256 I mean "the list of files" I have updated the description

@yegor sorry, perhaps I didn't get what s3auth can do actually we have http-published files from Aws bucket, right? so I believe it would better to be able sort these...

@yegor256 there is a project called [Swagger](http://swagger.io) that can dynamically generate documentation from a [Swagger-compliant API](https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md) You can see sample of [swagger server](http://petstore.swagger.io) and [the json api docs](http://petstore.swagger.io/v2/swagger.json) I doubt...

@yegor256 there are some standarts for a rest service description RSDL, WADL... But they are not so common such as WSDL for SOAP services. Btw the request method INFO not...

@yegor256 I think it should be a Fork implementation something like this ``` new FkRest( RqMethod.POST, Response.TEXT_PLAIN, '/user/{user}/limit' new Describe( new Item (new Describe.Purpose("change daily withdrawal limit for user") new...

@yegor256 I guess FkRest will check the data corresponds to the description at runtime. For example if a Take returns status 500, but it is not in the description, the...