File tree Expand file tree Collapse file tree 6 files changed +222
-203
lines changed Expand file tree Collapse file tree 6 files changed +222
-203
lines changed Original file line number Diff line number Diff line change
1
+ 1.5.0 - March 10, 2014
2
+ - Made the side menu a fixed height (#110 )
3
+ - Added a background color for PATCH (#117 )
4
+ - Response tab is set to active when request tab isn't shown (#120 )
5
+ - Added additional information in query parameter (#121 )
6
+
1
7
1.4.0 - January 30, 2015
2
8
- If an example's type is explicitly set to 'string' then don't syntax highlight it
3
9
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -91,6 +91,8 @@ traits:
91
91
id :
92
92
type : string
93
93
description : account identifier
94
+ minLength : 1
95
+ maxLength : 10
94
96
get :
95
97
headers :
96
98
Authorization :
@@ -145,12 +147,13 @@ traits:
145
147
/forgot :
146
148
post :
147
149
description : Sends an email to the user with a link to set a new password
148
- body :
149
- application/json :
150
- example : |
151
- {
152
-
153
- }
150
+ responses :
151
+ 200 :
152
+ description : Test
153
+ body :
154
+ text/xml :
155
+ example : |
156
+ <test>This is a test</test>
154
157
155
158
/session :
156
159
get :
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 8
8
<em >
9
9
{{ #if this.required }} required{{ /if }}
10
10
(
11
- {{ #if this.enum }}
11
+ {{ ~ #if this.enum ~ }}
12
12
one of {{ this.enum }}
13
- {{ else }}
13
+ {{ ~ else~ }}
14
14
{{ this.type }}
15
- {{ /if }}
15
+ {{ ~ /if~ }}
16
16
17
- {{ #if this.default }} - default: {{ this.default }} {{ /if }}
18
- {{ #if this.repeat }} - repeat: {{ this.repeat }} {{ /if }}
19
- {{ #ifTypeIsString }}
17
+ {{ ~ #if this.default ~ }} - default: {{ this.default }} {{ ~ /if~ }}
18
+ {{ ~ #if this.repeat ~ }} - repeat: {{ this.repeat }} {{ ~ /if~ }}
19
+ {{ ~ #ifTypeIsString~ }}
20
20
{{ #if this.minLength }} - minLength: {{ this.minLength }} {{ /if }}
21
21
{{ #if this.maxLength }} - maxLength: {{ this.maxLength }} {{ /if }}
22
- {{ else }}
22
+ {{ ~ else~ }}
23
23
{{ #if this.minimum }} - minimum: {{ this.minimum }} {{ /if }}
24
24
{{ #if this.maximum }} - maximum: {{ this.maximum }} {{ /if }}
25
- {{ /ifTypeIsString }}
26
- {{ #if this.pattern }} - pattern: {{ this.pattern }} {{ /if }}
25
+ {{ ~ /ifTypeIsString~ }}
26
+ {{ ~ #if this.pattern ~ }} - pattern: {{ this.pattern }} {{ ~ /if~ }}
27
27
)
28
28
</em >
29
29
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " raml2html" ,
3
3
"description" : " RAML to HTML documentation generator" ,
4
- "version" : " 1.4 .0" ,
4
+ "version" : " 1.5 .0" ,
5
5
"author" : {
6
6
"name" : " Kevin Renskers" ,
7
7
You can’t perform that action at this time.
0 commit comments