소스 검색

added separate request and response templates

bubble
Tony Tam 11 년 전
부모
커밋
7b9f8a2651
4개의 변경된 파일48개의 추가작업 그리고 0개의 파일을 삭제
  1. +14
    -0
      src/main/coffeescript/view/ParameterContentTypeView.coffee
  2. +14
    -0
      src/main/coffeescript/view/ResponseContentTypeView.coffee
  3. +10
    -0
      src/main/template/parameter_content_type.handlebars
  4. +10
    -0
      src/main/template/response_content_type.handlebars

+ 14
- 0
src/main/coffeescript/view/ParameterContentTypeView.coffee 파일 보기

@@ -0,0 +1,14 @@
class ParameterContentTypeView extends Backbone.View
initialize: ->

render: ->
template = @template()
$(@el).html(template(@model))

$('label[for=parameterContentType]', $(@el)).text('Parameter content type:')

@

template: ->
Handlebars.templates.parameter_content_type


+ 14
- 0
src/main/coffeescript/view/ResponseContentTypeView.coffee 파일 보기

@@ -0,0 +1,14 @@
class ResponseContentTypeView extends Backbone.View
initialize: ->

render: ->
template = @template()

$(@el).html(template(@model))
$('label[for=responseContentType]', $(@el)).text('Response Content Type')

@

template: ->
Handlebars.templates.response_content_type

+ 10
- 0
src/main/template/parameter_content_type.handlebars 파일 보기

@@ -0,0 +1,10 @@
<label for="parameterContentType"></label>
<select name="parameterContentType">
{{#if consumes}}
{{#each consumes}}
<option value="{{{this}}}">{{{this}}}</option>
{{/each}}
{{else}}
<option value="application/json">application/json</option>
{{/if}}
</select>

+ 10
- 0
src/main/template/response_content_type.handlebars 파일 보기

@@ -0,0 +1,10 @@
<label for="responseContentType"></label>
<select name="responseContentType">
{{#if produces}}
{{#each produces}}
<option value="{{{this}}}">{{{this}}}</option>
{{/each}}
{{else}}
<option value="application/json">application/json</option>
{{/if}}
</select>

불러오는 중...
취소
저장