Re: Multi Language Support

2017-01-25 Thread Meera nyjen
I think you need to explicitly add your fields with their conversions in the .js files available in lang folder. Please verify the ru.js or ja.js and add your fields there. On Tue, Jan 24, 2017 at 7:44 AM, pradeep thota wrote: > Yeah It was working. The swagger ui is getting translated. But is

Re: Multi Language Support

2017-01-18 Thread Meera nyjen
Hi, Try reloading the page again after clearing the cache. Check the browser console too. On Wed, Jan 18, 2017 at 1:24 AM, pradeep thota wrote: > Hi, > > I had placed the below lines in my index.html > > > > > But even then my UI is not translated to russian. Is there anything more i > need

Re: Swagger API documentation using eclipse (Java Spring)

2016-12-19 Thread Meera nyjen
Thanks for the reply ,Ron..Will take a look On Sun, Dec 18, 2016 at 6:29 AM, Ron Ratovsky wrote: > Take a look at https://github.com/springfox/springfox/ and follow their > documentation. Eclipse is irrelevant. > > > > > > > > *From: * on behalf of Meera n

Swagger API documentation using eclipse (Java Spring)

2016-12-15 Thread Meera nyjen
I would like to generate swagger API documentation for a java rest service. Can somebody point me to the steps for doing it? I am using IDE eclipse and technology used is spring -- You received this message because you are subscribed to the Google Groups "Swagger" group. To unsubscribe from this

Swagger UI with WCF Services

2016-12-14 Thread Meera nyjen
I have a couple of WCF services and I need to do just the API documentation for WCF Services. Is it possible to do the WCF documentation part, by using only swagger UI and swagger editor? -- You received this message because you are subscribed to the Google Groups "Swagger" group. To unsubscrib

Re: swagger-ui localization

2016-12-08 Thread Meera nyjen
You can add only one of the language files available in lang folder to index.html. There is no effect if you include more than one language file. It will serve only one 'js' file. On Thu, Dec 8, 2016 at 11:30 AM, Feorlen wrote: > > > On Thursday, December 8, 2016 at 9:26:16 AM UTC-8, Feorlen

Re: swagger-ui localization

2016-12-08 Thread Meera nyjen
In index.hml, available in 'dist' folder, below scripts can be used for changing the language. 'ru.js' displays the page in russian. Try with different js files available in 'lang' folder to display in other languages. Hope this helps On Tue, Dec 6, 2016 at 4:25 PM, Feorlen wrote: > I hav

Alignment of swagger ui

2016-12-03 Thread Meera nyjen
Is there any way to change the alignment of the whole swagger ui page to the left. It appears in the center by default. -- You received this message because you are subscribed to the Google Groups "Swagger" group. To unsubscribe from this group and stop receiving emails from it, send an email t

Re: How to setup swagger-editor to open specific file at startup

2016-11-30 Thread Meera nyjen
Once you download and setup the swagger editor, there is a folder named config. In that config folder, open defaults.json file. There is a section in that file as below: "exampleFiles": [ "default.yaml", "heroku-pets.yaml", "minimal.yaml", "echo.yaml", "petstore_simple.yaml",

Re: Formatting in swagger editor

2016-11-29 Thread Meera nyjen
Got it. Thanks! On Tue, Nov 29, 2016 at 11:10 AM, tony tam wrote: > Take a look at the specification—there is Markdown support in many fields. > > https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md > > On Nov 29, 2016, at 9:02 AM, Meera nyjen wrote: > &

Formatting in swagger editor

2016-11-29 Thread Meera nyjen
Is there any tags available to format the yaml content in swagger editor? eg: making the content bold, adding bullets etc -- You received this message because you are subscribed to the Google Groups "Swagger" group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: how to disable the validator in springfox swagger ui

2016-11-22 Thread Meera nyjen
I am able to resolve the mentioned issue by adding options, “validatorUrl: undefined” in index.html file where swaggerui is initialized window.swaggerUi = new SwaggerUi({ url: url, dom_id: "swagger-ui-container", validatorUrl: undefined, Hope this helps! On Tue, No

Re: Referencing path parameter definition

2016-11-14 Thread Meera nyjen
Hi, I have modified the yaml available in https://gist.github.com/marians/ 0c9ad72aa700a7afd2fb15dd3d3b10b3. Please see the attached yaml for your reference. Hope this helps!! On Mon, Nov 14, 2016 at 9:59 AM, Marian Steinbach < marian.steinb...@gmail.com> wrote: > Hi! > > I'd like to re-us

Re: error": "no response from server"

2016-11-09 Thread Meera nyjen
;Access-Control-Request-Headers", "X-Custom-Header", "header in index.html of swagger ui package. This will make swagger ui work in ie, chrome and mozilla firefox. and i got the expected response. On Mon, Nov 7, 2016 at 11:31 AM, Meera nyjen wrote: > Hi All, > >

error": "no response from server"

2016-11-07 Thread Meera nyjen
Hi All, I am trying to test a rest api hosted in a different domain using swagger ui. This swagger ui is hosted in my local machine with Apache tomcat. Now, when i try to access a rest api hosted in a different machine using 'Try it out' button in swagger ui, it gives 'error": "no response from s

Re: Missing required property YAML

2016-10-27 Thread Meera nyjen
It is possible to put json into swagger editor and work on it. So why worry about yaml? Just copy paste your json file into the swagger editor and try it. Hope this helps.. On Wed, Oct 26, 2016 at 8:06 AM, Vytautas Tamulevicius < vytautas.tamulevic...@gmail.com> wrote: > I am struggle with the Y

Embedding swagger editor in my website

2016-10-26 Thread Meera nyjen
I am trying to organize all the available REST api's in different projects into a single location. So any user can access the rest api documentation of all these API's of different projects through a browser. As a start up , I followed the below steps to do it: 1. Installed Apache Tomcat server in