From ef6b90b8e6e6c317fcda85a392c79324f91250db Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 25 Oct 2016 15:02:04 -0400 Subject: make controller project portable --- .../HttpServer/SocketSharp/HttpUtility.cs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'MediaBrowser.Server.Implementations/HttpServer/SocketSharp/HttpUtility.cs') diff --git a/MediaBrowser.Server.Implementations/HttpServer/SocketSharp/HttpUtility.cs b/MediaBrowser.Server.Implementations/HttpServer/SocketSharp/HttpUtility.cs index 3ef48d13a..49d6bceb4 100644 --- a/MediaBrowser.Server.Implementations/HttpServer/SocketSharp/HttpUtility.cs +++ b/MediaBrowser.Server.Implementations/HttpServer/SocketSharp/HttpUtility.cs @@ -3,6 +3,7 @@ using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Text; +using MediaBrowser.Model.Services; namespace MediaBrowser.Server.Implementations.HttpServer.SocketSharp { @@ -857,28 +858,28 @@ namespace MediaBrowser.Server.Implementations.HttpServer.SocketSharp return output.ToString(); } - public static NameValueCollection ParseQueryString(string query) + public static QueryParamCollection ParseQueryString(string query) { return ParseQueryString(query, Encoding.UTF8); } - public static NameValueCollection ParseQueryString(string query, Encoding encoding) + public static QueryParamCollection ParseQueryString(string query, Encoding encoding) { if (query == null) throw new ArgumentNullException("query"); if (encoding == null) throw new ArgumentNullException("encoding"); if (query.Length == 0 || (query.Length == 1 && query[0] == '?')) - return new NameValueCollection(); + return new QueryParamCollection(); if (query[0] == '?') query = query.Substring(1); - NameValueCollection result = new HttpQSCollection(); + QueryParamCollection result = new QueryParamCollection(); ParseQueryString(query, encoding, result); return result; } - internal static void ParseQueryString(string query, Encoding encoding, NameValueCollection result) + internal static void ParseQueryString(string query, Encoding encoding, QueryParamCollection result) { if (query.Length == 0) return; -- cgit v1.2.3 From 3c1447804b5de9a7d840c7158c3cb4e0a27f76e1 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 4 Nov 2016 22:17:18 -0400 Subject: move localization classes --- Emby.Dlna/Didl/DidlBuilder.cs | 8 +- .../Emby.Server.Implementations.csproj | 246 +++++- .../HttpServer/GetSwaggerResource.cs | 17 + .../HttpServer/SocketSharp/HttpUtility.cs | 922 ++++++++++++++++++++ .../HttpServer/SwaggerService.cs | 46 + .../Localization/Core/ar.json | 178 ++++ .../Localization/Core/bg-BG.json | 178 ++++ .../Localization/Core/ca.json | 178 ++++ .../Localization/Core/core.json | 179 ++++ .../Localization/Core/cs.json | 178 ++++ .../Localization/Core/da.json | 178 ++++ .../Localization/Core/de.json | 178 ++++ .../Localization/Core/el.json | 178 ++++ .../Localization/Core/en-GB.json | 178 ++++ .../Localization/Core/en-US.json | 178 ++++ .../Localization/Core/es-AR.json | 178 ++++ .../Localization/Core/es-MX.json | 178 ++++ .../Localization/Core/es.json | 178 ++++ .../Localization/Core/fi.json | 178 ++++ .../Localization/Core/fr-CA.json | 178 ++++ .../Localization/Core/fr.json | 178 ++++ .../Localization/Core/gsw.json | 178 ++++ .../Localization/Core/he.json | 178 ++++ .../Localization/Core/hr.json | 178 ++++ .../Localization/Core/hu.json | 178 ++++ .../Localization/Core/id.json | 178 ++++ .../Localization/Core/it.json | 178 ++++ .../Localization/Core/kk.json | 178 ++++ .../Localization/Core/ko.json | 178 ++++ .../Localization/Core/ms.json | 178 ++++ .../Localization/Core/nb.json | 178 ++++ .../Localization/Core/nl.json | 178 ++++ .../Localization/Core/pl.json | 178 ++++ .../Localization/Core/pt-BR.json | 178 ++++ .../Localization/Core/pt-PT.json | 178 ++++ .../Localization/Core/ro.json | 178 ++++ .../Localization/Core/ru.json | 178 ++++ .../Localization/Core/sl-SI.json | 178 ++++ .../Localization/Core/sv.json | 178 ++++ .../Localization/Core/tr.json | 178 ++++ .../Localization/Core/uk.json | 178 ++++ .../Localization/Core/vi.json | 178 ++++ .../Localization/Core/zh-CN.json | 178 ++++ .../Localization/Core/zh-HK.json | 178 ++++ .../Localization/Core/zh-TW.json | 178 ++++ .../Localization/LocalizationManager.cs | 433 ++++++++++ .../Localization/Ratings/au.txt | 8 + .../Localization/Ratings/be.txt | 6 + .../Localization/Ratings/br.txt | 6 + .../Localization/Ratings/ca.txt | 6 + .../Localization/Ratings/co.txt | 8 + .../Localization/Ratings/de.txt | 10 + .../Localization/Ratings/dk.txt | 4 + .../Localization/Ratings/fr.txt | 5 + .../Localization/Ratings/gb.txt | 7 + .../Localization/Ratings/ie.txt | 6 + .../Localization/Ratings/jp.txt | 4 + .../Localization/Ratings/kz.txt | 6 + .../Localization/Ratings/mx.txt | 6 + .../Localization/Ratings/nl.txt | 6 + .../Localization/Ratings/nz.txt | 10 + .../Localization/Ratings/ru.txt | 5 + .../Localization/Ratings/us.txt | 22 + .../Localization/countries.json | 1 + .../Localization/iso6392.txt | 487 +++++++++++ .../HttpServer/GetSwaggerResource.cs | 17 - .../HttpServer/HttpListenerHost.cs | 1 + .../HttpServer/SocketSharp/HttpUtility.cs | 942 --------------------- .../SocketSharp/WebSocketSharpRequest.cs | 1 + .../HttpServer/SwaggerService.cs | 43 - .../Localization/Core/ar.json | 178 ---- .../Localization/Core/bg-BG.json | 178 ---- .../Localization/Core/ca.json | 178 ---- .../Localization/Core/core.json | 179 ---- .../Localization/Core/cs.json | 178 ---- .../Localization/Core/da.json | 178 ---- .../Localization/Core/de.json | 178 ---- .../Localization/Core/el.json | 178 ---- .../Localization/Core/en-GB.json | 178 ---- .../Localization/Core/en-US.json | 178 ---- .../Localization/Core/es-AR.json | 178 ---- .../Localization/Core/es-MX.json | 178 ---- .../Localization/Core/es.json | 178 ---- .../Localization/Core/fi.json | 178 ---- .../Localization/Core/fr-CA.json | 178 ---- .../Localization/Core/fr.json | 178 ---- .../Localization/Core/gsw.json | 178 ---- .../Localization/Core/he.json | 178 ---- .../Localization/Core/hr.json | 178 ---- .../Localization/Core/hu.json | 178 ---- .../Localization/Core/id.json | 178 ---- .../Localization/Core/it.json | 178 ---- .../Localization/Core/kk.json | 178 ---- .../Localization/Core/ko.json | 178 ---- .../Localization/Core/ms.json | 178 ---- .../Localization/Core/nb.json | 178 ---- .../Localization/Core/nl.json | 178 ---- .../Localization/Core/pl.json | 178 ---- .../Localization/Core/pt-BR.json | 178 ---- .../Localization/Core/pt-PT.json | 178 ---- .../Localization/Core/ro.json | 178 ---- .../Localization/Core/ru.json | 178 ---- .../Localization/Core/sl-SI.json | 178 ---- .../Localization/Core/sv.json | 178 ---- .../Localization/Core/tr.json | 178 ---- .../Localization/Core/uk.json | 178 ---- .../Localization/Core/vi.json | 178 ---- .../Localization/Core/zh-CN.json | 178 ---- .../Localization/Core/zh-HK.json | 178 ---- .../Localization/Core/zh-TW.json | 178 ---- .../Localization/LocalizationManager.cs | 422 --------- .../Localization/Ratings/au.txt | 8 - .../Localization/Ratings/be.txt | 6 - .../Localization/Ratings/br.txt | 6 - .../Localization/Ratings/ca.txt | 6 - .../Localization/Ratings/co.txt | 8 - .../Localization/Ratings/de.txt | 10 - .../Localization/Ratings/dk.txt | 4 - .../Localization/Ratings/fr.txt | 5 - .../Localization/Ratings/gb.txt | 7 - .../Localization/Ratings/ie.txt | 6 - .../Localization/Ratings/jp.txt | 4 - .../Localization/Ratings/kz.txt | 6 - .../Localization/Ratings/mx.txt | 6 - .../Localization/Ratings/nl.txt | 6 - .../Localization/Ratings/nz.txt | 10 - .../Localization/Ratings/ru.txt | 5 - .../Localization/Ratings/us.txt | 22 - .../Localization/countries.json | 1 - .../Localization/iso6392.txt | 487 ----------- .../MediaBrowser.Server.Implementations.csproj | 209 ----- .../ApplicationHost.cs | 9 +- .../MediaBrowser.Server.Startup.Common.csproj | 1 + .../TextLocalizer.cs | 25 + 134 files changed, 9434 insertions(+), 9376 deletions(-) create mode 100644 Emby.Server.Implementations/HttpServer/GetSwaggerResource.cs create mode 100644 Emby.Server.Implementations/HttpServer/SocketSharp/HttpUtility.cs create mode 100644 Emby.Server.Implementations/HttpServer/SwaggerService.cs create mode 100644 Emby.Server.Implementations/Localization/Core/ar.json create mode 100644 Emby.Server.Implementations/Localization/Core/bg-BG.json create mode 100644 Emby.Server.Implementations/Localization/Core/ca.json create mode 100644 Emby.Server.Implementations/Localization/Core/core.json create mode 100644 Emby.Server.Implementations/Localization/Core/cs.json create mode 100644 Emby.Server.Implementations/Localization/Core/da.json create mode 100644 Emby.Server.Implementations/Localization/Core/de.json create mode 100644 Emby.Server.Implementations/Localization/Core/el.json create mode 100644 Emby.Server.Implementations/Localization/Core/en-GB.json create mode 100644 Emby.Server.Implementations/Localization/Core/en-US.json create mode 100644 Emby.Server.Implementations/Localization/Core/es-AR.json create mode 100644 Emby.Server.Implementations/Localization/Core/es-MX.json create mode 100644 Emby.Server.Implementations/Localization/Core/es.json create mode 100644 Emby.Server.Implementations/Localization/Core/fi.json create mode 100644 Emby.Server.Implementations/Localization/Core/fr-CA.json create mode 100644 Emby.Server.Implementations/Localization/Core/fr.json create mode 100644 Emby.Server.Implementations/Localization/Core/gsw.json create mode 100644 Emby.Server.Implementations/Localization/Core/he.json create mode 100644 Emby.Server.Implementations/Localization/Core/hr.json create mode 100644 Emby.Server.Implementations/Localization/Core/hu.json create mode 100644 Emby.Server.Implementations/Localization/Core/id.json create mode 100644 Emby.Server.Implementations/Localization/Core/it.json create mode 100644 Emby.Server.Implementations/Localization/Core/kk.json create mode 100644 Emby.Server.Implementations/Localization/Core/ko.json create mode 100644 Emby.Server.Implementations/Localization/Core/ms.json create mode 100644 Emby.Server.Implementations/Localization/Core/nb.json create mode 100644 Emby.Server.Implementations/Localization/Core/nl.json create mode 100644 Emby.Server.Implementations/Localization/Core/pl.json create mode 100644 Emby.Server.Implementations/Localization/Core/pt-BR.json create mode 100644 Emby.Server.Implementations/Localization/Core/pt-PT.json create mode 100644 Emby.Server.Implementations/Localization/Core/ro.json create mode 100644 Emby.Server.Implementations/Localization/Core/ru.json create mode 100644 Emby.Server.Implementations/Localization/Core/sl-SI.json create mode 100644 Emby.Server.Implementations/Localization/Core/sv.json create mode 100644 Emby.Server.Implementations/Localization/Core/tr.json create mode 100644 Emby.Server.Implementations/Localization/Core/uk.json create mode 100644 Emby.Server.Implementations/Localization/Core/vi.json create mode 100644 Emby.Server.Implementations/Localization/Core/zh-CN.json create mode 100644 Emby.Server.Implementations/Localization/Core/zh-HK.json create mode 100644 Emby.Server.Implementations/Localization/Core/zh-TW.json create mode 100644 Emby.Server.Implementations/Localization/LocalizationManager.cs create mode 100644 Emby.Server.Implementations/Localization/Ratings/au.txt create mode 100644 Emby.Server.Implementations/Localization/Ratings/be.txt create mode 100644 Emby.Server.Implementations/Localization/Ratings/br.txt create mode 100644 Emby.Server.Implementations/Localization/Ratings/ca.txt create mode 100644 Emby.Server.Implementations/Localization/Ratings/co.txt create mode 100644 Emby.Server.Implementations/Localization/Ratings/de.txt create mode 100644 Emby.Server.Implementations/Localization/Ratings/dk.txt create mode 100644 Emby.Server.Implementations/Localization/Ratings/fr.txt create mode 100644 Emby.Server.Implementations/Localization/Ratings/gb.txt create mode 100644 Emby.Server.Implementations/Localization/Ratings/ie.txt create mode 100644 Emby.Server.Implementations/Localization/Ratings/jp.txt create mode 100644 Emby.Server.Implementations/Localization/Ratings/kz.txt create mode 100644 Emby.Server.Implementations/Localization/Ratings/mx.txt create mode 100644 Emby.Server.Implementations/Localization/Ratings/nl.txt create mode 100644 Emby.Server.Implementations/Localization/Ratings/nz.txt create mode 100644 Emby.Server.Implementations/Localization/Ratings/ru.txt create mode 100644 Emby.Server.Implementations/Localization/Ratings/us.txt create mode 100644 Emby.Server.Implementations/Localization/countries.json create mode 100644 Emby.Server.Implementations/Localization/iso6392.txt delete mode 100644 MediaBrowser.Server.Implementations/HttpServer/GetSwaggerResource.cs delete mode 100644 MediaBrowser.Server.Implementations/HttpServer/SocketSharp/HttpUtility.cs delete mode 100644 MediaBrowser.Server.Implementations/HttpServer/SwaggerService.cs delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/ar.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/bg-BG.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/ca.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/core.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/cs.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/da.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/de.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/el.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/en-GB.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/en-US.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/es-AR.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/es-MX.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/es.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/fi.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/fr-CA.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/fr.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/gsw.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/he.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/hr.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/hu.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/id.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/it.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/kk.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/ko.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/ms.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/nb.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/nl.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/pl.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/pt-BR.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/pt-PT.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/ro.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/ru.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/sl-SI.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/sv.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/tr.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/uk.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/vi.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/zh-CN.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/zh-HK.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/Core/zh-TW.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/LocalizationManager.cs delete mode 100644 MediaBrowser.Server.Implementations/Localization/Ratings/au.txt delete mode 100644 MediaBrowser.Server.Implementations/Localization/Ratings/be.txt delete mode 100644 MediaBrowser.Server.Implementations/Localization/Ratings/br.txt delete mode 100644 MediaBrowser.Server.Implementations/Localization/Ratings/ca.txt delete mode 100644 MediaBrowser.Server.Implementations/Localization/Ratings/co.txt delete mode 100644 MediaBrowser.Server.Implementations/Localization/Ratings/de.txt delete mode 100644 MediaBrowser.Server.Implementations/Localization/Ratings/dk.txt delete mode 100644 MediaBrowser.Server.Implementations/Localization/Ratings/fr.txt delete mode 100644 MediaBrowser.Server.Implementations/Localization/Ratings/gb.txt delete mode 100644 MediaBrowser.Server.Implementations/Localization/Ratings/ie.txt delete mode 100644 MediaBrowser.Server.Implementations/Localization/Ratings/jp.txt delete mode 100644 MediaBrowser.Server.Implementations/Localization/Ratings/kz.txt delete mode 100644 MediaBrowser.Server.Implementations/Localization/Ratings/mx.txt delete mode 100644 MediaBrowser.Server.Implementations/Localization/Ratings/nl.txt delete mode 100644 MediaBrowser.Server.Implementations/Localization/Ratings/nz.txt delete mode 100644 MediaBrowser.Server.Implementations/Localization/Ratings/ru.txt delete mode 100644 MediaBrowser.Server.Implementations/Localization/Ratings/us.txt delete mode 100644 MediaBrowser.Server.Implementations/Localization/countries.json delete mode 100644 MediaBrowser.Server.Implementations/Localization/iso6392.txt create mode 100644 MediaBrowser.Server.Startup.Common/TextLocalizer.cs (limited to 'MediaBrowser.Server.Implementations/HttpServer/SocketSharp/HttpUtility.cs') diff --git a/Emby.Dlna/Didl/DidlBuilder.cs b/Emby.Dlna/Didl/DidlBuilder.cs index 50668f555..ee5c8fecd 100644 --- a/Emby.Dlna/Didl/DidlBuilder.cs +++ b/Emby.Dlna/Didl/DidlBuilder.cs @@ -104,6 +104,8 @@ namespace Emby.Dlna.Didl writer.WriteStartElement(string.Empty, "item", NS_DIDL); + AddGeneralProperties(item, null, context, writer, filter); + writer.WriteAttributeString("restricted", "1"); writer.WriteAttributeString("id", clientId); @@ -122,8 +124,6 @@ namespace Emby.Dlna.Didl //AddBookmarkInfo(item, user, element); - AddGeneralProperties(item, null, context, writer, filter); - // refID? // storeAttribute(itemNode, object, ClassProperties.REF_ID, false); @@ -501,6 +501,8 @@ namespace Emby.Dlna.Didl { writer.WriteStartElement(string.Empty, "container", NS_DIDL); + AddGeneralProperties(folder, stubType, context, writer, filter); + writer.WriteAttributeString("restricted", "0"); writer.WriteAttributeString("searchable", "1"); writer.WriteAttributeString("childCount", childCount.ToString(_usCulture)); @@ -534,8 +536,6 @@ namespace Emby.Dlna.Didl } } - AddCommonFields(folder, stubType, null, writer, filter); - AddCover(folder, context, stubType, writer); writer.WriteEndElement(); diff --git a/Emby.Server.Implementations/Emby.Server.Implementations.csproj b/Emby.Server.Implementations/Emby.Server.Implementations.csproj index 8d13d206a..33f29d64d 100644 --- a/Emby.Server.Implementations/Emby.Server.Implementations.csproj +++ b/Emby.Server.Implementations/Emby.Server.Implementations.csproj @@ -67,11 +67,14 @@ + + + @@ -144,6 +147,7 @@ + @@ -230,7 +234,9 @@ - + + + {9142eefa-7570-41e1-bfcc-468bb571af2f} @@ -266,8 +272,246 @@ + + swagger-ui\fonts\droid-sans-v6-latin-700.svg + PreserveNewest + + + swagger-ui\fonts\droid-sans-v6-latin-regular.svg + PreserveNewest + + + swagger-ui\images\explorer_icons.png + PreserveNewest + + + swagger-ui\images\logo_small.png + PreserveNewest + + + swagger-ui\images\pet_store_api.png + PreserveNewest + + + swagger-ui\images\throbber.gif + PreserveNewest + + + swagger-ui\images\wordnik_api.png + PreserveNewest + + + swagger-ui\index.html + PreserveNewest + + + swagger-ui\lib\backbone-min.js + PreserveNewest + + + swagger-ui\lib\handlebars-2.0.0.js + PreserveNewest + + + swagger-ui\lib\highlight.7.3.pack.js + PreserveNewest + + + swagger-ui\lib\jquery-1.8.0.min.js + PreserveNewest + + + swagger-ui\lib\jquery.ba-bbq.min.js + PreserveNewest + + + swagger-ui\lib\jquery.slideto.min.js + PreserveNewest + + + swagger-ui\lib\jquery.wiggle.min.js + PreserveNewest + + + swagger-ui\lib\marked.js + PreserveNewest + + + swagger-ui\lib\shred.bundle.js + PreserveNewest + + + swagger-ui\lib\shred\content.js + PreserveNewest + + + swagger-ui\lib\swagger-client.js + PreserveNewest + + + swagger-ui\lib\swagger-oauth.js + PreserveNewest + + + swagger-ui\lib\underscore-min.js + PreserveNewest + + + swagger-ui\o2c.html + PreserveNewest + + + swagger-ui\patch.js + PreserveNewest + + + swagger-ui\swagger-ui.js + PreserveNewest + + + swagger-ui\swagger-ui.min.js + PreserveNewest + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + swagger-ui\fonts\droid-sans-v6-latin-700.eot + PreserveNewest + + + swagger-ui\fonts\droid-sans-v6-latin-700.ttf + PreserveNewest + + + swagger-ui\fonts\droid-sans-v6-latin-700.woff + PreserveNewest + + + swagger-ui\fonts\droid-sans-v6-latin-700.woff2 + PreserveNewest + + + swagger-ui\fonts\droid-sans-v6-latin-regular.eot + PreserveNewest + + + swagger-ui\fonts\droid-sans-v6-latin-regular.ttf + PreserveNewest + + + swagger-ui\fonts\droid-sans-v6-latin-regular.woff + PreserveNewest + + + swagger-ui\fonts\droid-sans-v6-latin-regular.woff2 + PreserveNewest + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + swagger-ui\css\reset.css + PreserveNewest + + + swagger-ui\css\screen.css + PreserveNewest + + + swagger-ui\css\typography.css + PreserveNewest + +