Steffen Furholm
c0dc273e7a
Merge remote-tracking branch 'origin/master' into feature/allow-overriding-of-only-some-templates-v2
2015-10-28 23:30:19 +01:00
Nadezhda Makarkina
6008664ff8
processOptions tests have been added for Android, Ruby, nodeJS, php, python, csharp, CsharpDotNet2, dart, flash
2015-10-28 14:55:42 +03:00
Nadezhda Makarkina
9e791c229b
processOptions tests have been added for Java and JaxRS
2015-10-27 15:51:39 +03:00
wing328
4551076b22
Merge pull request #1438 from wing328/better_doc
...
Better documentation for DefaultCodegen.java
2015-10-27 15:53:17 +08:00
xhh
f1e3809279
Fix partial template reading
2015-10-27 01:12:57 +01:00
wing328
cc7105b5d8
fix jarxs path with basepath
2015-10-26 18:00:15 +08:00
wing328
6792aea7f8
better comment for default codegen
2015-10-26 16:12:05 +08:00
Tomek Cejner
6247dd0cde
Swift enum names capitalization follows Swift convention.
2015-10-25 00:06:00 +02:00
Tony Tam
83afaffd92
Merge pull request #1430 from nbruno/java-child-enum-bug
...
Ensure hasMore is updated when reconciling enum properties from parent
2015-10-23 08:08:30 -07:00
wing328
d2faa63ebc
Merge pull request #1431 from wing328/fix_empty_operation_id
...
Better error message for empty operationId
2015-10-23 18:47:04 +08:00
wing328
fecbc3c45d
Merge pull request #1306 from fdorothy/master
...
Specifying configuration files from Codegen class
2015-10-23 15:41:00 +08:00
Tony Tam
a6e4203cd5
added property check
2015-10-22 22:39:09 -07:00
wing328
dd34d75f00
better error message for empty operationId
2015-10-23 12:46:44 +08:00
Nick Bruno
1eed1917b9
Ensure hasMore is updated when reconciling enum properties from parent
2015-10-22 22:33:20 -04:00
Tony Tam
e289b858a9
Merge pull request #1428 from swagger-api/feature/selective-generation
...
made selective generation of models
2015-10-22 15:28:58 -07:00
Tony Tam
7170f7fa01
updated supporitng file support
2015-10-22 15:28:49 -07:00
Tony Tam
6253a592d9
added optional support for apis, supoprtingFiles
2015-10-22 14:54:29 -07:00
Tony Tam
723cf9b823
made selective generation of models
2015-10-22 14:03:44 -07:00
Cristian Trifan
2fcb705826
Update TypeScriptAngularClientCodegen.java
...
Fix minor typo
2015-10-22 23:19:46 +03:00
Tony Tam
bade71c6ba
merged
2015-10-20 10:59:20 -07:00
Tony Tam
10a9c62e2b
merged
2015-10-20 10:57:36 -07:00
Tony Tam
5c29562926
ensure body params are flattened when type ModelImpl
2015-10-20 08:48:26 -07:00
Tony Tam
b827d06077
fix for npe on map models
2015-10-20 08:48:04 -07:00
Tony Tam
aaf1df1971
more flattening fixes
2015-10-19 23:10:48 -07:00
Tony Tam
eeaf4071f9
updated to not flatten array, map properties in responses unless necessary
2015-10-19 21:35:45 -07:00
Tony Tam
89dc4d29ab
added map support
2015-10-18 21:05:57 -07:00
Tony Tam
3cf1f1a56a
added support for array and model inline types
2015-10-18 20:51:55 -07:00
Nick Bruno
b83db8e535
Merge remote-tracking branch 'upstream/master' into add-auth-annotations-jaxrs
2015-10-18 17:19:44 -04:00
wing328
e8fbdaabe3
replace tabs with spaces
2015-10-17 16:44:55 +08:00
wing328
b82333aea4
Add support for top-level consumes and produces
...
This reverts commit 0b4b5e8839 .
2015-10-17 16:30:19 +08:00
Tony Tam
bfa4303e6e
added inline model resolver
2015-10-16 18:21:34 -07:00
Tony Tam
9508579eed
added inline resolver
2015-10-16 18:21:06 -07:00
Steffen Furholm
8bc4c1f05e
Allow overriding of only some templates when using --template-dir option. Templates which aren't found in the template directory will fall back to the ones packaged/distributed with Swagger
2015-10-16 23:29:08 +02:00
cbornet
71c5160739
add colllectionFormat support to retrofit
...
Fix #1364
2015-10-16 12:21:45 +02:00
wing328
084e7f7199
Merge pull request #1380 from xhh/java-global-security
...
Apply global security to operations when necessary
2015-10-16 12:50:41 +08:00
wing328
ab026fdde3
Merge pull request #1393 from gwen15/genfix
...
REST client code generation bug fix proposal
2015-10-16 12:42:32 +08:00
wing328
d5e2aea723
Merge pull request #1375 from xhh/issue-1308
...
Remove duplicate fields from sub-classes of the Java codegen
2015-10-16 12:02:25 +08:00
Nat Luengnaruemitchai
7db67aa192
add library in the additional option
2015-10-15 20:44:27 -07:00
gwen15
0802f94d94
Bug fix: some character replacement where done on the local directories
...
names.
The dot character was replaced by the file separator on the whole paths,
not only on the package name based part.
2015-10-15 12:35:23 +02:00
gwen15
21eb406140
Fix default long value in java client code generation
...
The generated java code for a Long was "Long id=1;" which is not
compilable by javac because "1" is a primitive integer that cannot be
cast to a Long object. This fix generates now "Long id=1l;".
2015-10-15 12:35:16 +02:00
xhh
84928abd8d
Merge branch 'master' into java-global-security
2015-10-15 17:57:27 +08:00
xhh
1c21730607
Log a warning on more than 1 security requirements
2015-10-15 17:56:38 +08:00
xhh
bc5a610567
Use the first security requirement from the array
...
According to swagger spec, "there is a logical OR between the security
requirements". The original behavior was to apply the security
requirements as the logic AND and skip security requirements that
include more that 1 security.
2015-10-15 15:17:30 +08:00
wing328
860b551e9b
Merge pull request #1376 from xhh/java-util-model-package
...
[Java] Add a config option to use fully qualified name for java.util classes
2015-10-15 12:12:37 +08:00
wing328
22218cb132
Merge pull request #1378 from xhh/java-invalid-enum-name
...
[Java] Handle enum names starting with number in Java client
2015-10-15 10:51:03 +08:00
xhh
a94384ca7f
Merge branch 'master' into java-util-model-package
2015-10-15 10:38:19 +08:00
xhh
6d50ce6a77
Fix a typo
2015-10-15 10:34:45 +08:00
wing328
583493f5ca
Merge pull request #1377 from cbornet/java_gradle_android
...
Add gradle files with android support to java templates
2015-10-15 10:28:28 +08:00
Nick Bruno
6cc17d8508
Add authorization scope data to CodegenSecurity, demo use in JAXRS
2015-10-14 22:07:43 -04:00
wing328
0b4b5e8839
Revert "Add support for top-level consumes and produces"
2015-10-13 23:47:42 +08:00